- 论坛徽章:
- 0
|
单臂路由 + NAT 实例
应该叫"单臂路由"吧,其实win也行的,可以用 anyrouter 软件,只不过功能少些.
好,给个实例,因为我们上网要交钱办帐号,所以...
我现在回帖用的就是自己单网卡的笔记本,不想加装网卡了.提供路由和NAT.
%less /etc/rc.conf
# -- sysinstall generated deltas -- # Mon May 15 04:59:39 2006
# Created: Mon May 15 04:59:39 2006
# Enable network daemons for user convenience.
# Please make all changes to this file, not to /etc/defaults/rc.conf.
# This file now contains just the overrides from /etc/defaults/rc.conf.
defaultrouter="192.168.1.1"
hostname="husir.exam.gov"
ifconfig_bge0="inet 192.168.1.179 netmask 255.255.255.0"
#加一句,下句设 ip别名,担当内网网卡.
#只不过防火墙的地方注意他们是一块网卡,进出规则不能矛盾.
#其实我认为这样的防火枪没什么用.好在是 bsd 系统
ifconfig_bge0_alias0="inet 192.168.20.249 netmask 255.255.255.248"
gateway_enable="YES"
natd_enable="YES"
natd_interface="bge0"
firewall_enable="YES"
firewall_script="/etc/nat_ipfw.conf"
ntpdate_enable="YES"
ntpdate_flags="asia.pool.ntp.org"
ntpd_enable="YES"
keymap="us.iso"
linux_enable="YES"
usbd_enable="YES"
moused_enable="YES"
saver="warp"
$less /etc/nat_ipfw.conf
#!/bin/sh -
setup_loopback () {
############
# Only in rare cases do you want to change these rules
#
${fwcmd} add 100 pass all from any to any via lo0
${fwcmd} add 200 deny all from any to 127.0.0.0/8
${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
}
fwcmd="/sbin/ipfw"
############
# Flush out the list before we begin.
#
${fwcmd} -f flush
# set these to your outside interface network and netmask and ip
oif="bge0"
onet="192.168.1..0"
omask="255.255.255.0"
oip="192.168.1.179"
# set these to your inside interface network and netmask and ip
iif="bge0_alias0"
inet="192.168.20.0"
imask="255.255.255.248"
iip="192.168.20.249"
# natd_interface
natd_interface="bge0"
setup_loopback
# Stop spoofing
# ${fwcmd} add deny all from ${inet}:${imask} to any in via ${oif}
# ${fwcmd} add deny all from ${onet}:${omask} to any in via ${iif}
# Stop RFC1918 nets on the outside interface
${fwcmd} add deny all from any to 10.0.0.0/8 via ${oif}
${fwcmd} add deny all from any to 172.16.0.0/12 via ${oif}
# ${fwcmd} add deny all from any to 192.168.0.0/16 via ${oif}
# Stop draft-manning-dsua-03.txt (1 May 2000) nets (includes RESERVED-1,
# DHCP auto-configuration, NET-TEST, MULTICAST (class D), and class E)
# on the outside interface
${fwcmd} add deny all from any to 0.0.0.0/8 via ${oif}
${fwcmd} add deny all from any to 169.254.0.0/16 via ${oif}
${fwcmd} add deny all from any to 192.0.2.0/24 via ${oif}
${fwcmd} add deny all from any to 224.0.0.0/4 via ${oif}
${fwcmd} add deny all from any to 240.0.0.0/4 via ${oif}
${fwcmd} add divert natd all from any to any via ${natd_interface}
# Stop RFC1918 nets on the outside interface
${fwcmd} add deny all from 10.0.0.0/8 to any via ${oif}
${fwcmd} add deny all from 172.16.0.0/12 to any via ${oif}
# ${fwcmd} add deny all from 192.168.0.0/16 to any via ${oif}
# Stop draft-manning-dsua-03.txt (1 May 2000) nets (includes RESERVED-1,
# DHCP auto-configuration, NET-TEST, MULTICAST (class D), and class E)
# on the outside interface
${fwcmd} add deny all from 0.0.0.0/8 to any via ${oif}
${fwcmd} add deny all from 169.254.0.0/16 to any via ${oif}
${fwcmd} add deny all from 192.0.2.0/24 to any via ${oif}
${fwcmd} add deny all from 224.0.0.0/4 to any via ${oif}
${fwcmd} add deny all from 240.0.0.0/4 to any via ${oif}
# allow any ip via bge0 & bge0_alias0
${fwcmd} add pass ip from any to any
# Allow IP fragments to pass through
${fwcmd} add pass all from any to any frag
# Allow TCP through if setup succeeded
${fwcmd} add pass tcp from any to any established
# Allow setup of incoming email
# ${fwcmd} add pass tcp from any to ${oip} 25 setup
# Allow access to our DNS
# ${fwcmd} add pass tcp from any to ${oip} 53 setup
# ${fwcmd} add pass udp from any to ${oip} 53
# ${fwcmd} add pass udp from ${oip} 53 to any
# Allow access to our WWW
# ${fwcmd} add pass tcp from any to ${oip} 80 setup
# Reject&Log all setup of incoming connections from the outside
${fwcmd} add deny log tcp from any to any in via ${oif} setup
# Allow setup of any other TCP connection
${fwcmd} add pass tcp from any to any setup
# Allow DNS queries out in the world
${fwcmd} add pass udp from ${oip} to any 53 keep-state
# Allow NTP queries out in the world
${fwcmd} add pass udp from ${oip} to any 123 keep-state
# Everything else is denied by default, unless the
# IPFIREWALL_DEFAULT_TO_ACCEPT option is set in your kernel
# config file. |
|