OpenIndiana 静态 IP

OpenIndiana 静态 IP

我现在已经安装了两次 OpenIndiana 151a7。使用以下说明配置了静态 IP:

svcadm disable svc:/network/physical:nwam
svcadm enable svc:/network/physical:default
cp /etc/nsswitch.dns /etc/nsswitch.conf

/etc/节点名

storage

/etc/主机名.e1000g0

10.0.1.64 netmask 255.255.248.0

/etc/resolv.conf

search lbox.com
nameserver 10.0.1.45
nameserver 10.0.1.46

/etc/inet/主机

127.0.0.1 storage storage.local localhost loghost
10.0.1.64 storage storage.lbox.com

/etc/inet/ipnodes

127.0.0.1 storage storage.local localhost loghost
10.0.1.64 storage storage.lbox.com

/etc/默认域

/etc/默认路由器

10.0.1.2

reboot

我无法 ping 通,而且无论如何也想不出原因。

我也尝试过这个替代方案:

/etc/主机名.e1000g0

10.0.1.64

/etc/网络掩码

10.0.1.0    255.255.248.0

谁能帮助我弄清楚为什么我无法 ping 通?

答案1

我使用了该ipadm命令。流程记录在此处http://docs.oracle.com/cd/E19963-01/html/821-1458/gjwiq.html

答案2

我让 OpenIndiana 安装程序找到其 DHCP 地址,然后遵循以下格式

echo 192.168.1.1 > /etc/defaultrouter
svcadm disable svc:/network/physical:nwam
svcadm enable svc:/network/physical:default
cp /etc/nsswitch.dns /etc/nsswitch.conf
echo storage > /etc/nodename
echo 10.0.1.64 > /etc/hostname.e1000g0

vim /etc/resolv.conf
    search lbox.com
    nameserver 10.0.1.45
    nameserver 10.0.1.46

vim /etc/inet/ipnodes
    127.0.0.1 storage storage.local localhost loghost
    10.0.1.64 storage storage.lbox.com

echo 10.0.1.2 > /etc/defaultrouter
echo 10.0.1.64 > /etc/hostname.e1000g0
echo 10.0.1.0 255.255.248.0 > /etc/netmasks

reboot

一切顺利。

编辑:没有

相关内容