Xubuntu 虚拟接口上的 dhclient

Xubuntu 虚拟接口上的 dhclient

我在 xubuntu 盒子上配置了一个 vlan 接口,并将其设置为 dhcp

eth1.125  Link encap:Ethernet  HWaddr d4:ae:52:6a:dd:81
      inet addr:10.10.10.4  Bcast:10.10.10.255  Mask:255.255.255.0
      inet6 addr: fe80::d6ae:52ff:fe6a:dd81/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:167 errors:0 dropped:0 overruns:0 frame:0
      TX packets:82 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:0
      RX bytes:7620 (7.6 KB)  TX bytes:11719 (11.7 KB)

我的 /etc/network/interfaces 文件包含以下内容

auto eth1.125
iface eth1.125 inet dhcp

dhcp 确实有效,我获得了一个 IP。但是,我想释放/更新此接口上的 IP。如果我执行“dhclient -r eth1.125”,它会释放 IP,但我无法执行“dhclient eth1.125”来更新。我必须重新启动该框才能在虚拟接口中重新获得 IP。我如何在不重新启动的情况下进行更新?

相关内容