在网络 Debian 配置中添加 IPV6 范围/阻止

在网络 Debian 配置中添加 IPV6 范围/阻止

我正在我的服务器上配置网络接口,编辑此文件/etc/network/interfaces.d/50-cloud-init.cfg

我需要配置一个 IP 地址列表,这些地址都位于同一个 IP 块中。目前,我正在配置文件中单独写入每个 IP 地址。我想知道是否可以一次性激活整个 IP 块/范围?

我现在里面的东西是这样的:

auto lo
iface lo inet loopback
    dns-nameservers xxx.xxx.33.99

auto eno1
iface eno1 inet dhcp
    mtu 1500

auto eno1:0
iface eno1:0 inet static
address xx5.xx9.xx.0
netmask 255.255.255.255

auto eno1:1
iface eno1:1 inet static
address xx.xx.xx.1
netmask 255.255.255.255

auto eno1:2
iface eno1:2 inet static
address xx.xx.xx.2
netmask 255.255.255.255

auto eno1:3
iface eno1:3 inet static
address xx.xx.1xx.3
netmask 255.255.255.255

auto eno1:4
iface eno1:4 inet static
address xx.xx.xx.4
netmask 255.255.255.255

auto eno1:5
iface eno1:5 inet static
address xx.xx.xx.5
netmask 255.255.255.255


auto eno1:6
iface eno1:6 inet static
address xx6.xx.xx.6
netmask 255.255.255.255

auto eno1:7
iface eno1:7 inet static
address xx6.xx.xx.7
netmask 255.255.255.255

相关内容