Solaris 10 Quickstart
Installing SUNpci after adding packages:
# cd /opt/SUNWspci3/drivers/solaris/ # ln -s sunpcidrv.280 sunpcidrv.2100 # ln -s sunpcidrv.280.64 sunpcidrv.2100.64 # ./sunpcload
Enabling IPF:
# vi /etc/ipf/pfil.ap (uncomment interface type) # vi /etc/ipf/ipf.conf # svcadm restart network/pfil # svcadm enable network/ipfilter # ifconfig [interface] down # ifconfig [interface] unplumb # ifconfig [interface] plumb [address] netmask [netmask] up # ipfstat -io (will show running ruleset)
Listing inetd services:
# inetadm
Disable an inetd service
# inetadm -d [service name]
Listing all services:
# svcs -a
Disable/enable a non-legacy service:
# svcadm enable|disable [service path (e.g. network/nfs/client)]
Minimizing services:
# svccfg apply /var/svc/profile/generic_limited_net.xml
Enable TCP Wrappers and TCP tracing for inetd:
# inetadm -M tcp_trace=true # inetadm -M tcp_wrappers=true
Enabling TCP wrappers for rpcbind:
# svccfg svc:> select /network/rpc/bind svc:/network/rpc/bind> setprop config/enable_tcpwrappers = boolean: "true" svc:/network/rpc/bind> setprop config/verbose_logging = boolean: "true"