這篇文章是在二年前寫的吧,真懷念 :p Environment:FreeBSD 4.7
一張網卡就夠了 !!!
首先,必須修改你的Kernel支援nat and firewall
.修改kernel
#cd /usr/src/sys/i368/conf
#vi GENERIC
加入以下幾行(請留意,options後面是用tab做間隔,不是空白鍵)
options IPFIREWALL
options IPDIVERT
.編kernel
#config GENERIC
#cd ../../compile/GENERIC
#make depend all install
(泡杯茶吧,休息一下....)
.在/etc/rc.conf檔案中加入設定
對外網卡固有的設定:
ifconfig_lnc0="inet 192.168.2.100 netmask 255.255.255.0" //視個人對外的ip所定喔
對內網卡的設定:
ifconfig_lnc0_alias0="inet 10.1.1.254 netmask 255.255.255.0"
gateway_enable="YES"
firewall_enable="YES"
firewall_type="OPEN"
natd_enable="YES"
natd_interface="lnc0"重開機後,您就享有一個NAT的環境囉......
一張網卡就夠了 !!!
首先,必須修改你的Kernel支援nat and firewall
.修改kernel
#cd /usr/src/sys/i368/conf
#vi GENERIC
加入以下幾行(請留意,options後面是用tab做間隔,不是空白鍵)
options IPFIREWALL
options IPDIVERT
.編kernel
#config GENERIC
#cd ../../compile/GENERIC
#make depend all install
(泡杯茶吧,休息一下....)
.在/etc/rc.conf檔案中加入設定
對外網卡固有的設定:
ifconfig_lnc0="inet 192.168.2.100 netmask 255.255.255.0" //視個人對外的ip所定喔
對內網卡的設定:
ifconfig_lnc0_alias0="inet 10.1.1.254 netmask 255.255.255.0"
gateway_enable="YES"
firewall_enable="YES"
firewall_type="OPEN"
natd_enable="YES"
natd_interface="lnc0"重開機後,您就享有一個NAT的環境囉......
全站熱搜
留言列表