如何在 Ubuntu 9.10 中设置公共静态 IP

如何在 Ubuntu 9.10 中设置公共静态 IP

我有一台 Ubuntu 9.10 服务器,需要设置一个静态公共 IP。

我们的办公室已经有由思科设置的网络,因此路由器配置为将请求转发到服务器。

以下是来自 ISP 的信息:

静态 IP:

xyz59

xyz60

xyz61

xyz62

网关:

xyz33

网络掩码:

255.255.255.224

主名称服务器:

abc245

辅助名称服务器:

abc30

我只需要知道在 Ubuntu(非图形化)中运行的命令来使用静态 IP 设置此服务器:xyz61

谢谢

答案1

我将编辑/etc/network/interfaces以下内容:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0

auto eth0
iface eth0 inet static
    address x.y.z.61
    netmask 255.255.255.224
    gateway x.y.z.33

虽然您可能需要使用除eth0系统之外的其他东西。运行ifconfig将为您提供网络接口列表。然后您将编辑/etc/resolv.confDNS 条目:

nameserver a.b.c.245
nameserver a.b.c.30

最后发出命令

sudo /etc/init.d/networking restart

答案2

相关内容