I configured br1 to the @Peter Havekes practice from https://www.snbforums.com/threads/ipv6-for-guest-network.30787/
And used tcpdump to capture packages on the ppp0.
These packages were sent out and responsed remotely.
It may be that I used the same network segment in br1 and br0 to cause...
This is my whole script(create_br_dmz.sh):
#!/bin/bash -e
#set -x
/jffs/scripts/clear_br_dmz.sh
DMZ_IP_RANGE="192.168.110.1/24"
# Physical port to interface map:
# eth0 WAN
# eth1 LAN 4
# eth2 LAN 3
# eth3 LAN 2
# eth4 LAN 1
# eth5 2.4 GHz Radio
# eth6 5 GHz Radio
# Create a...
[Add: I've found my problem, Thanks @Markster]
I want the LAN segment can access to WAN but can't access to other segments on my network.
I've tried to do something similar to yours.
# create a new linux bridge
brctl addbr br-dmz
# move lan1 to the new bridge
brctl delif br0 eth4
brctl addif...
Hi:
I used a LAN port to connect the DMZ device and set the DMZ IP in WebUI.
However i don't want the DMZ device access internal.
So I want to add the LAN port to guest wifi network(br1) which is set disabled to access intranet.
I run the command:
brctl delif br0 eth4 && brctl addif br1 eth4...
My device is rt-ac86u with the latest asuswrt-merlin firmware 386.2_6.
I have installed entware and added a 256MB swap file.
When the equipment runs for more than three days, the system becomes unstable. It's unable to restart from web page or scheduled task. And ssh connection returns...
Hi everyone:
I use asus RT-AC86U to link NETGEAR R6400 with openvpn
Then I export the .ovpn from NETGEAR R6400 as follows
client
dev tap
proto udp
remote xxx.mynetgear.com 12974
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
cert client.crt
key client.key
cipher AES-128-CBC...
Hi RMerlin:
I have the same problem. But I know my old router's LAN MAC Address. How can I change my router'MAC address to release the DDNS.
I use Linux commands as below:
ifconfig eth0 down
ifconfig eth0 hw ether xxxxxxxx
ifconfig eth0 up
MAC address of all interfaces...