FreeBSB 8.4设置静态IP与路由及DNS

参考官方文档http://www.freebsd.org/doc/zh_CN.UTF-8/books/handbook/config-network-setup.html

1.确定网络接口名称
使用 ifconfig -a 命令获取网络接口名称

2.配置静态IP及路由
添加如下内容至 /etc/rc.conf 文件
# 配置IP
ifconfig_em0="inet 192.1.1.21 netmask 255.255.255.0"
ifconfig_em1="inet 10.1.1.1 netmask 255.255.255.0"

# 配置默认路由
defaultrouter="192.1.1.1"

3.设置DNS
在 /etc/resolv.conf 文件中添加DNS配置
nameserver 8.8.8.8
nameserver 8.8.4.4

4.重启服务,使用配置生效
重启网络系统:
/etc/rc.d/netif restart

注意:
如果在 /etc/rc.conf 中配置了默认网关, 还需要运行下面的命令:
/etc/rc.d/routing restart


02-12 09:21