我想在路由器启动时启动 ppp 连接,但我需要先激活一个 vlan。问题是,如果我在 ppp 接口中 ifup vlan,则当 pppoe 尝试连接时,vlan 不会启动。
这是我的 /etc/network/interfaces 的样子:
auto myprovider
iface myprovider inet ppp
pre-up /sbin/ifconfig eth0.2 up
provider myprovider
auto eth0.2
iface eth0.2 inet manual
ppp 设备物理位于 eth0 上。
答案1
如果物理接口也设置为自动,它似乎也可以工作:
auto eth0
auto eth0.2
auto myprovider
iface eth0 inet manual
iface eth0.2 inet manual
iface myprovider inet ppp
pre-up /sbin/ifconfig eth0.2 up
provider myprovider