vps交流

[疑问] 有老哥知道 /etc/network/interface 的写法嘛


手贱,不小心给弄坏了,有老哥提供个标准的写法嘛?

因为自己DD过系统,所以当时都是设置的静态IP,IPV4跟IPV6都是静态的。

现在不知道怎么写了……机器死掉了。

系统是debian 11

把你其他机器的文件复制一份进去
搜一下就知道了[疑问]  有老哥知道 /etc/network/interface 的写法嘛
这个比较高深不行你还是重装下系统吧

toot 发表于 2022-8-4 20:34
把你其他机器的文件复制一份进去

试过了,不行。。。
我需要设置静态的IPV4跟静态的IPV6就行了。

https://linuxhint.com/debian_etc_network_interfaces/
这种?

auto <Interface>
iface <Interface> inet static
address 192.168.0.1
netmask 255.255.255.0

gateway 192.168.0.1
dns-nameservers 8.8.8.8

lemonSSS 发表于 2022-8-4 20:35
搜一下就知道了

不行啊,求帮助。

我这个做了网桥的。你直连的话稍微修改下就可以了

auto lo
iface lo inet loopback

iface lo inet6 loopback

auto enp41s0
iface enp41s0 inet manual
        up route add -net x.x.x.x netmask 255.255.255.192 gw x.x.x.x dev enp41s0

auto vmbr0
iface vmbr0 inet static
        address x.x.x.x.x/26
        gateway x.x.x.x
        bridge-ports enp41s0
        bridge-stp off
        bridge-fd 0

iface vmbr0 inet6 static
        address x.x.x.x.x::2/64
        gateway fe80::1
        up ip -6 route del x.x.x.x::/64 dev vmbr0[疑问]  有老哥知道 /etc/network/interface 的写法嘛

盟心 发表于 2022-8-4 20:35
https://linuxhint.com/debian_etc_network_interfaces/
这种?

对的老哥,但是我也有IPV6的。不知道怎么弄了。

sdqu 发表于 2022-8-4 20:37
我这个做了网桥的。你直连的话稍微修改下就可以了

auto lo

这咋改……老哥