Use Fritbox Lan4 as an ephemeral networking connection

I want το offer in my Frtizbox 7360 I managed to make it dial up via ppp. But Because I want to set up asterisk and I want to avoid using DSL whilst I seti it up, so I can internet to search for any issue regarding this.

What I want to make the router retrieve network and access the internet via my existing router via Ethernet cable. Therefore, I backed up my existing /etc/config/network into /etc/config/network.dsl

cp /etc/config/network /etc/config/network.dsl

Then I used that settings in /etc/config/network:

config interface 'loopback'
	option device 'lo'
	option proto 'static'
	option ipaddr '127.0.0.1'
	option netmask '255.0.0.0'

config globals 'globals'
	option ula_prefix 'fdd2:a40d:d919::/48'

config device
	option name 'br-lan'
	option type 'bridge'
	list ports 'lan1'
	list ports 'lan2'
	list ports 'lan3'
	list ports 'lan4'

config interface 'lan'
    option device 'br-lan'
    option proto 'static'
    option ipaddr '192.168.2.10'
    option netmask '255.255.255.0'
    option gateway '192.166.2.1'
    option dns '192.168.2.1'

I manage to access my router via 192.168.2.10 but the router itself is unable to get internet access:

# ping google.com
PING google.com (2a00:1450:4017:80a::200e): 56 data bytes
ping: sendto: Permission denied

Any idea why?

Fail......

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