Does anyone else have issues that it takes FOREVER to be assigned an ip? I have a new install and it took forever to be initially assigned on the network, after this happening again and eventually resolving itself, it has happened AGAIN and I have now without internet for the past 18 hours.
Support over email have stopped replying to me and over whatsapp. Can I please just have a response?
@Yayzi_Team
Are you using the Yayzi router?
We’re still on this for you, shouldn’t have any issues with getting an IP - but we’re on it
1 Like
Using stock everything currently
1 Like
I did try using it with an AX56U on Merlin but couldn’t get the VLAN tagging to work. This was this script I used, no rofocfg available
#!/bin/sh
# eth0 - LAN 1
# eth1 - LAN 2
# eth2 - LAN 3
# eth3 - LAN 4 (WAN port reassigned as LAN)
# eth4 - Main WiFi 2.4GHz
# eth5 - Main WiFi 5GHz
# wl0.1 - Guest WiFi 2.4GHz
# wl1.1 - Guest WiFi 5GHz
# Remove default bridge assignments
brctl delif br0 eth0
brctl delif br0 eth1
brctl delif br0 eth2
brctl delif br0 eth3
brctl delif br0 eth4
brctl delif br0 eth5
brctl delif br0 wl0.1
brctl delif br0 wl1.1
# Add VLAN 911 to all ports and wireless interfaces
ip link add link eth0 name eth0.911 type vlan id 911
ip link add link eth1 name eth1.911 type vlan id 911
ip link add link eth2 name eth2.911 type vlan id 911
ip link add link eth3 name eth3.911 type vlan id 911
ip link add link eth4 name eth4.911 type vlan id 911
ip link add link eth5 name eth5.911 type vlan id 911
# Set VLAN interfaces up
ip link set eth0.911 up
ip link set eth1.911 up
ip link set eth2.911 up
ip link set eth3.911 up
ip link set eth4.911 up
ip link set eth5.911 up
# Create a new bridge for VLAN 911
brctl addbr br911
# Add VLAN interfaces to bridge
brctl addif br911 eth0.911
brctl addif br911 eth1.911
brctl addif br911 eth2.911
brctl addif br911 eth3.911
brctl addif br911 eth4.911
brctl addif br911 eth5.911
# Add wireless interfaces to the bridge
brctl addif br911 wl0.1
brctl addif br911 wl1.1
# Enable spanning tree protocol
brctl stp br911 on
# Bring up the bridge
ip link set br911 up
# Update NVRAM settings
nvram set br0_ifnames="eth0.911 eth1.911 eth2.911 eth3.911 eth4.911 eth5.911 wl0.1 wl1.1"
nvram set lan_ifnames="eth0.911 eth1.911 eth2.911 eth3.911 eth4.911 eth5.911 wl0.1 wl1.1"
nvram set br0_ifname="br911"
nvram set lan_ifname="br911"
# Restart network services
killall eapd
eapd
ebtables -F
Urm, vLan 911 only needs to be on WAN not all the LAN. Then you are bridging the WAN, WiFi and LAN ports?
Good catch, I have nothing in any ports apart from eth3 (WAN Failover) so this shouldn’t cause any issues right?
No but you won’t get an IP address as you aren’t handing any local DHCP address out. Plus doesnt look like much routing is being done. Im no merlin pro I have never used it.