启动 Linux 时设置 tcp ip 参数

启动 Linux 时设置 tcp ip 参数

有人可以向我解释一下如何在我的主板上启动 Linux 时设置 tcp ip 参数吗?

目前我给出的是:TCP IP=:::::eth0:dhcp

如果我有自己的静态 IP 及其对应的 MAC ID,我可以在启动时为我的主板更改它吗?

请提供宝贵意见。

谢谢,
Sen

答案1

这是你想要的吗?
HowToGeek:将 Ubuntu 服务器从 DHCP 更改为静态 IP 地址

你需要编辑 /etc/network/interfaces 来设置静态 IP,它看起来像这样

auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
dns-nameservers 192.168.1.1

您还需要添加 dns 设置/etc/resolv.conf并删除 dhcp 客户端以使此功能保留。

相关内容