Solaris

無法在 Solaris(OpenIndiana) 中設置靜態 IP

  • March 26, 2011

我正在執行這個命令:

ifconfig e1000g0 192.168.0.1

我已經用 unplumbing/plumbing、up/down、netmask 和 broadcast 做了 50 多種變體。沒關係,因為ifconfig e1000g0總是將我的 IP 地址顯示為 0.0.0.0。

我需要進行此設置,以便我可以測試我的交叉網路並深入了解為什麼 zfs 只能提供我對伺服器進行基準測試的速度的四分之一的根本原因。

可能有用的資訊,我在盒子上有兩個網卡,第二個通過 ssh 執行了所有這些命令。

您是否使用以下方法禁用了 AutoMagic:

svcadm disable network/physical:nwam
svcadm enable network/physical:default

您應該能夠手動配置您想要的任何內容,例如:

ifconfig e1000g0 plumb
ifconfig e1000g0 192.168.0.1/24 broadcast + up

您可能還需要一個預設網關:

route add default 192.168.0.254

根據需要為您的網路替換 IP。

引用自:https://serverfault.com/questions/248393