Static route を起動時に設定する。
○/etc/rc2.d/S69inet
# Static routing table
if [ -f /etc/local.route ]; then
/etc/local.route && echo " set local routing table."
fi
○/etc/local.route
#!/bin/sh
route add -net 172.16.0.0/16 172.16.0.254
※744にすること
« Solaris OSパラメータ一覧 | メインですよ(エントリーアーカイブ) | DISK管理(Disk Suite(SoftwareRAIDツール)) »
○/etc/rc2.d/S69inet
# Static routing table
if [ -f /etc/local.route ]; then
/etc/local.route && echo " set local routing table."
fi
○/etc/local.route
#!/bin/sh
route add -net 172.16.0.0/16 172.16.0.254