我是靠谱客的博主 跳跃黄豆,这篇文章主要介绍[Linux]关于网卡配置文件,现在分享给大家,希望可以做个参考。

文件通常是:/etc/network/interfaces

静态ip网卡配置文件:

	auto eth0
	iface eth0 inet static
	address 192.168.10.103
	netmask 255.255.255.0
	gateway 192.168.10.1
	nameserver 202.96.128.86

	“auto eth0”表示网卡随系统自动请;
	“iface eth0 inet static”表示网卡为静态ip地址,
	“address 192.168.2.147”表示设置ip地址,
	“netmask 255.255.255.0”表示子网掩码;
	“gateway 192.168.2.1”表示网关。
	“nameserver”表示DNS


自动获取IP的网卡配置文件:

	auto eth0
	iface eth0 inet dhcp

	“auto eth0”表示网卡随机启动;
	“iface eth0 inet dhcp”表示网卡ip地址自动获取;

也可以通过命令行输入 dhclient 来自动获取IP

最后

以上就是跳跃黄豆最近收集整理的关于[Linux]关于网卡配置文件的全部内容,更多相关[Linux]关于网卡配置文件内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(113)

评论列表共有 0 条评论

立即
投稿
返回
顶部