Help me to isolate my device from the rest of the network with vlan

@anon78773196 - Please try this experiment and provide the actual information that you see in your computer's network settings

1 Like

ok I started from the beginning and I want to thank you for the help you gave me :wink: I will share my configuration which now works :stuck_out_tongue:
for those who arrive along the way

I put macbook and ps5

this is the config he wokk like a charm thanks @psherman

config dhcp 'ps5'
	option interface 'ps5'
	option start '100'
	option limit '150'
	option leasetime '12h'

config dhcp 'macbook'
	option interface 'macbook'
	option start '100'
	option limit '150'
	option leasetime '12h'``
config forwarding
	option src 'lan'
	option dest 'vpn'

config zone
	option name 'ps5'
	option output 'ACCEPT'
	option forward 'ACCEPT'
	option mtu_fix '1'
	list network 'ps5'
	option input 'ACCEPT'

config forwarding
	option src 'ps5'
	option dest 'wan'

config zone
	option name 'macbook'
	option output 'ACCEPT'
	option forward 'ACCEPT'
	option mtu_fix '1'
	list network 'macbook'
	option input 'ACCEPT'

config forwarding
	option src 'macbook'
	option dest 'wan'
config device
	option name 'br-lan'
	option type 'bridge'
	list ports 'lan3'
	list ports 'lan4'

config device
	option name 'ps5'
	option type 'bridge'
	list ports 'lan1'

config device
	option name 'macbook'
	option type 'bridge'
	list ports 'lan2'

config interface 'lan'
	option device 'br-lan'
	option proto 'static'
	option netmask '255.255.255.0'
	option ip6assign '60'
	option ipaddr '192.168.2.1'

config interface 'ps5'
	option device 'ps5'
	option proto 'static'
	option netmask '255.255.255.0'
	option ip6assign '60'
	option ipaddr '192.168.3.1'  

config interface 'macbook'
	option device 'macbook'
	option proto 'static'
	option netmask '255.255.255.0'
	option ip6assign '60'
	option ipaddr '192.168.4.1'


config interface 'wan'
	option device 'wan'
	option proto 'dhcp'

config interface 'wan6'
	option device 'wan'
	option proto 'dhcpv6'

config interface 'vpn'
	option proto 'none'
	option device 'tun0'


2 Likes

Great! Glad to hear it is working now.

If your problem is solved, please consider marking this topic as [Solved]. See How to mark a topic as [Solved] for a short how-to.

2 Likes

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.