Buffalo WBMR-HP-G300H, The experimenting with

General discussion about Gargoyle, OpenWrt or anything else even remotely related to the project

Moderator: Moderators

User avatar
pyed
Posts: 37
Joined: Tue Aug 13, 2013 1:14 am

Re: Buffalo WBMR-HP-G300H, The experimenting with

Post by pyed »

Fa55u wrote:Is this the best modem/router combo for Gargoyle? Looking for an all in one solution so I can get rid of all the modems and routers I have lying around :lol:

Does it work with a recent build?
yes it should work, but you have to compile it yourself.
Buffalo WBMR-HP-G300H

ispyisail
Moderator
Posts: 5185
Joined: Mon Apr 06, 2009 3:15 am
Location: New Zealand

Re: Buffalo WBMR-HP-G300H, The experimenting with

Post by ispyisail »


User avatar
pyed
Posts: 37
Joined: Tue Aug 13, 2013 1:14 am

Re: Buffalo WBMR-HP-G300H, The experimenting with

Post by pyed »

1.9.1 build, pretty solid.

Code: Select all

------------------------------------------------------------------
|            _____                             _                 |
|           |  __ \                           | |                |
|           | |  \/ __ _ _ __ __ _  ___  _   _| | ___            |
|           | | __ / _` | '__/ _` |/ _ \| | | | |/ _ \           |
|           | |_\ \ (_| | | | (_| | (_) | |_| | |  __/           |
|            \____/\__,_|_|  \__, |\___/ \__, |_|\___|           |
|                             __/ |       __/ |                  |
|                            |___/       |___/                   |
|                                                                |
|----------------------------------------------------------------|
| Gargoyle version 1.9.X    | OpenWrt Chaos Calmer branch        |
| Gargoyle revision 093be12 | OpenWrt commit eadf19c             |
| Built October 22, 2016    | Target  lantiq/custom              |
------------------------------------------------------------------
MD5 : 233ebb93dae8fa9b5cc4a586d70b8903
LINK : https://cloudup.com/c029AZ7qCk6
Buffalo WBMR-HP-G300H

ispyisail
Moderator
Posts: 5185
Joined: Mon Apr 06, 2009 3:15 am
Location: New Zealand

Re: Buffalo WBMR-HP-G300H, The experimenting with

Post by ispyisail »


Lantis
Moderator
Posts: 6753
Joined: Mon Jan 05, 2015 5:33 am
Location: Australia

Re: Buffalo WBMR-HP-G300H, The experimenting with

Post by Lantis »

He built based on the latest. It IS 1.9.x
http://lantisproject.com/downloads/gargoyle_ispyisail.php for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.

User avatar
pyed
Posts: 37
Joined: Tue Aug 13, 2013 1:14 am

Re: Buffalo WBMR-HP-G300H, The experimenting with

Post by pyed »

another minimum build after the DirtyCOW fix + upnp

Code: Select all

------------------------------------------------------------------
|            _____                             _                 |
|           |  __ \                           | |                |
|           | |  \/ __ _ _ __ __ _  ___  _   _| | ___            |
|           | | __ / _` | '__/ _` |/ _ \| | | | |/ _ \           |
|           | |_\ \ (_| | | | (_| | (_) | |_| | |  __/           |
|            \____/\__,_|_|  \__, |\___/ \__, |_|\___|           |
|                             __/ |       __/ |                  |
|                            |___/       |___/                   |
|                                                                |
|----------------------------------------------------------------|
| Gargoyle version 1.9.X    | OpenWrt Chaos Calmer branch        |
| Gargoyle revision 0db073a | OpenWrt commit 1378f4a             |
| Built October 30, 2016    | Target  lantiq/custom              |
------------------------------------------------------------------
MD5: 127bcbfab5006e7e046a2df6802925f5
.conf: http://pastebin.com/9UrvSRWe

link: https://cloudup.com/c3xMA9WFdYJ

to run miniupnp, execute the following commands once after the upgrade

Code: Select all

/etc/init.d/miniupnpd enable
/etc/init.d/miniupnpd start
/etc/init.d/firewall restart
or you can turn it on via the webui under firewall, I guess :mrgreen:
Buffalo WBMR-HP-G300H

User avatar
pyed
Posts: 37
Joined: Tue Aug 13, 2013 1:14 am

Re: Buffalo WBMR-HP-G300H, The experimenting with

Post by pyed »

New build, this build represents the current HEAD, it has some ugly-ass/unfinished webui, contains UPnP + OpenVPN

Code: Select all

BusyBox v1.23.2 (2017-01-16 20:52:55 UTC) built-in shell (ash)

------------------------------------------------------------------
|            _____                             _                 |
|           |  __ \                           | |                |
|           | |  \/ __ _ _ __ __ _  ___  _   _| | ___            |
|           | | __ / _` | '__/ _` |/ _ \| | | | |/ _ \           |
|           | |_\ \ (_| | | | (_| | (_) | |_| | |  __/           |
|            \____/\__,_|_|  \__, |\___/ \__, |_|\___|           |
|                             __/ |       __/ |                  |
|                            |___/       |___/                   |
|                                                                |
|----------------------------------------------------------------|
| Gargoyle version 1.9.X    | OpenWrt Chaos Calmer branch        |
| Gargoyle revision 5dc1bf8 | OpenWrt commit 1378f4a             |
| Built January 16, 2017    | Target  lantiq/custom              |
------------------------------------------------------------------
.confg: http://pastebin.com/WKGZFiyR
MD5 : 4582b80519e7f392f81cd1ced8620b8f
link : https://cloudup.com/cbBs-ZlgQut


- note to self, this is how you usually build using docker

Code: Select all

mkdir ~/build

docker run -t -i -v ~/build:/root/build ubuntu /bin/bash

# use non-root user (recommended) or set "export FORCE_UNSAFE_CONFIGURE=1"

cd /root/build

apt-get update

apt-get install -y curl

curl -sL https://deb.nodesource.com/setup_6.x | bash -

apt-get install -y build-essential asciidoc binutils bzip2 gawk gettext git libncurses5-dev libz-dev patch unzip zlib1g-dev lib32gcc1 libc6-dev-i386 subversion flex git-core gcc-multilib p7zip p7zip-full msmtp libssl-dev texinfo wget nodejs

apt-get install -y npm

git clone https://github.com/ericpaulbishop/gargoyle.git

cd gargoyle

make custom
Last edited by pyed on Wed Apr 15, 2020 12:13 pm, edited 5 times in total.
Buffalo WBMR-HP-G300H

Lantis
Moderator
Posts: 6753
Joined: Mon Jan 05, 2015 5:33 am
Location: Australia

Re: Buffalo WBMR-HP-G300H, The experimenting with

Post by Lantis »

pyed wrote:New build, this build represents the current HEAD, it has some ugly-ass/unfinished webui, contains UPnP + OpenVPN
What would you prefer instead (with reference to the UI)?
And are you willing to contribute?
http://lantisproject.com/downloads/gargoyle_ispyisail.php for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.

User avatar
pyed
Posts: 37
Joined: Tue Aug 13, 2013 1:14 am

Re: Buffalo WBMR-HP-G300H, The experimenting with

Post by pyed »

Lantis wrote:
pyed wrote:New build, this build represents the current HEAD, it has some ugly-ass/unfinished webui, contains UPnP + OpenVPN
What would you prefer instead (with reference to the UI)?
And are you willing to contribute?
I really know next to nothing about webui designing, I think the new webui is okay, it just needs more polish that's all, and I like that it supports phones now.

thanks, and keep up the good work ;)
Buffalo WBMR-HP-G300H

ispyisail
Moderator
Posts: 5185
Joined: Mon Apr 06, 2009 3:15 am
Location: New Zealand

Re: Buffalo WBMR-HP-G300H, The experimenting with

Post by ispyisail »

:(

I think its looks fantastic Lantis

Post Reply