我有以下网络(所有机器都是 Debian GNU/Linux 10 Buster):
+----+ +--------+ +--------+ +----+
|.1.x| <--> .1.1 |ROUTER-A| .101.1 <--> .101.2 |ROUTER-B| .2.1 <--> |.2.x|
+----+ enp0s8 +--------+ enp0s9 enp0s9 +--------+ enp0s8 +----+
我正在尝试使网络中.1.x
的机器能够与网络中的机器进行通信.2.x
。
根据此链接或此up
链接,我们可以在接口文件中添加命令。所以我试了一下。
/etc/network/
interfaces
interfaces.d/
enp0s3-nat
enp0s8-intnet-1
enp0s9-intnet-101
loopback
内部enp0s9-intnet-101
:
allow-hotplug enp0s9
iface enp0s9 inet static
address 192.168.101.1
netmask 255.255.255.0
gateway 192.168.101.1
network 192.168.101.0
up ip route add 192.168.2.0/24 via 192.168.101.2
但它不起作用。出于好奇,我试过up echo "hello world" > /tmp/hello-test
了,它也不起作用。
如果我用一个方法替换我的static
方法manual
:
allow-hotplug enp0s9
iface enp0s9 inet manual
up ip address add 192.168.101.1/24 dev enp0s9
up ip route add 192.168.2.0/24 via 192.168.101.2
它可以在重新启动时工作,但是如果我使用 then 来“上下”我的界面,ip link set enp0s9 down
则ip link set enp0s9 up
该路由不再可用。
所以我的问题:
- 是否可以
up
在方法中使用命令static
? - 为什么,用我的
manual
方法,路线不是用ip link set enp0s9 up
?