首页 > Web开发 > 详细

Linux /etc/network/interfaces

时间:2020-02-10 11:42:16      阅读:81      评论:0      收藏:0      [点我收藏+]

  Linux下/etc/network/interfaces文件用来配置网络接口。

1. 使用动态IP地址

auto eth0
iface eth0 inet dhcp

2. 使用静态IP地址

auto eth0
iface eth0 inet static
    address 192.168.1.100
    netmask 255.255.255.0
    gateway 192.168.1.1
#   network 192.168.1.0
#   broadcast 192.168.1.255

  network和broadcast一般使用默认值就行。

3. 查看路由表

# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         192.168.1.1     0.0.0.0         UG    0      0        0 eth0
192.168.1.0     *               255.255.255.0   U     0      0        0 eth0
# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.1     0.0.0.0         UG    0      0        0 eth0
192.168.1.0     0.0.0.0         255.255.255.0   U     0      0        0 eth0

  route -n不解析名字。

Linux /etc/network/interfaces

原文:https://www.cnblogs.com/yanceylu/p/12289911.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!