請問 ipfilter 要如何安裝
我安裝了好幾回 都失敗 請問安裝前 須要先安裝什麼軟件
謝謝 先輩們
| YT 回复于:2002-11-15 21:14:45 |
| Solaris can make a great firewall OS if properly install and harden. Hardware can be a Sparc box with a 2nd network interface or a x86 box with dual NIC. Solaris 2.x CDs - free for education and non-commercial use from Sun website. I got my Solaris 8 copy from Sun booth at Linux Expo in San Jose last August 2000. Here are the necessary steps to brew you own firewall box with Solaris (1) OS: (a) Boot and install just the "core" distribution from Solaris CD. These steps should be easy within GUI or menu driven... - Define which interfe is public (untrust) or private (trust) - Fill in hostname and appropriate IPs for each interface - Dont connect or activate your connection to the untrust network untill you have installed IPFilter (b) Additional packages are required in order for GNU gcc to work: SUNWhea SUNWsrh SUNWbtool SUNWscpu SUNWtoo SUNWlibm SUNWsprot SUNWarc By selecting core installation, there is no volume management (vold) for automounting your CD when you stick one in. You have to mount the CD by hand: # mount -F hsfs /dev/dsk/c0t6d0s0 /mnt where t6 is my CDROM SCSI ID. It is different if you are on a x86 box and IDE. Check your system with "dmesg". Once the CD is mounted, cd to /mnt/Solaris_8/Product and copy the above package into /tmp # cp -R SUNWhea /tmp ... # cp -R SUNWarc /tmp Use pkgadd to install these package to your system: # cd /tmp # pkgadd -d . (c) Patches: download & install the lastest Recommended patch batch from http//sunsolve.sun.com - ftping: # ftp sunsolve.sun.com login: ftp passwd: ftp ftp> cd /pub/patches ftp> bin ftp> hash ftp> get 8_Recommended.zip ftp> bye - installing: # unzip 8_Recommended.zip ... # cd 8_Recommended # ./install_cluster ... # reboot (you can reboot now or wait until afer step #2) (d) Turn on journaling feature for UFS To avoid lengthy fsck after an unclean shutdown or power outtage, one can turn on journaling on UFS simply by adding "logging" in the mount option: # /etc/vfstab # #device device mount FS fsck mount mount #to mount to fsck point type pass at boot options #
本文关键:請問 ipfilter 要如何安裝
|