ubuntu 添加路由至 DSL 调制解调器

ubuntu 添加路由至 DSL 调制解调器

我有一个带有两个网络接口的路由器:eth0 服务于本地网络,而 eth1 连接到我的 DSL 调制解调器。

我在接口中有以下条目:

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
    address 192.168.0.1
    netmask 255.255.255.0
    network 192.168.0.0
    broadcast 192.168.0.255
    gateway 192.168.0.1
    dns-nameservers 127.0.0.1
    dns-search lala.home
    dns-domain lala.home

auto dsl-provider
iface dsl-provider inet ppp
pre-up /sbin/ifconfig eth1 up # line maintained by pppoeconf
provider dsl-provider

auto eth1
iface eth1 inet manual

DSL 调制解调器的 IP 地址为 192.168.1.1

如何从我的本地网络访问 DSL 调制解调器 Web 界面?

相关内容