Networking
如何在 Ubuntu 9.10 中設置公共靜態 IP
我有一個 Ubuntu 9.10 伺服器,我需要設置一個靜態公共 IP。
我們的辦公室已經有 Cisco 的網路設置,因此路由器配置為將請求轉發到伺服器。
以下是來自 ISP 的資訊:
靜態IP:
xyz59
xyz60
xyz61
xyz62
網關:
xyz33
網路遮罩:
255.255.255.224
主要名稱伺服器:
abc245
輔助名稱伺服器:
abc30
我只需要知道在 Ubuntu(非圖形)中執行的命令,即可使用以下靜態 IP 設置此伺服器:xyz61
謝謝
我將編輯
/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.conf
DNS 條目:nameserver a.b.c.245 nameserver a.b.c.30
最後發出命令
sudo /etc/init.d/networking restart