arch linux开启dhcp,ArchLinux DHCP配置问题

  • Post author:
  • Post category:linux


ArchLinux DHCP配置问题

Jul 7, 2013

Technology

安装完ArchLinux后,发现网卡无法从路由器通过dhcp得到地址,ArchLinux的dhcp客户端是dhcpcd,默认配置文件。路由器型号是TP-link WR340G v5, 2010年入手的。

手动调用dhcpcd时候发现LOG里有NAK消息爆出。

翻了下Arch的论坛,这个问题是由于dhcpcd的参数配置引发的,某些dhcpcd向路由器请求的参数无法得到而导致,个人觉得大约是WR340G版本够老,无法提供这些个参数。

##解决方案一:

编辑/etc/dhcpcd.conf, 注释掉classless_static_routes 和 interface_mtu即可:

# option classless_static_routes

# Respect the network MTU.

# option interface_mtu

而后我们可以用systemd在每次启动的时候自动调用dhcpcd绑定地址:

$ systemctl enable dhcpcd@enp0s25

$ systemctl start dhcpcd@enp0s25

##解决方案二:

安装dhclient:

$ pacman -S dhclient

$ dhclient enp0s25

这种方法需要每次手动输入,不过我们可以使用netctl包来自动管理网络接口信息:

$ cp /etc/netctl/examples/ethernet-dhcp /etc/netctl/ethernet-dhcp

由netctl.profile查到