diff options
author | dillon <dillon@FreeBSD.org> | 2000-06-22 17:40:53 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 2000-06-22 17:40:53 +0000 |
commit | 5d8a7de8570eb75670e019704173b6e48737c34b (patch) | |
tree | b31c25704cfb22c5fc40229e2a0f638e558af22c /etc/defaults/rc.conf | |
parent | 2f0b29c4591f9110dcdbf497e8cdd7df6dd4a2ab (diff) | |
download | FreeBSD-src-5d8a7de8570eb75670e019704173b6e48737c34b.zip FreeBSD-src-5d8a7de8570eb75670e019704173b6e48737c34b.tar.gz |
Add ip_portrange_first and ip_portrange_last rc.conf/rc.network
options. This allows you to set the standard dynamic port
assignment range prior to any network daemons (like named) starting
up, necessary if you are also using a firewall to restrict lower ports.
will be MFC'd in a few days
Diffstat (limited to 'etc/defaults/rc.conf')
-rw-r--r-- | etc/defaults/rc.conf | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index dd178ca..ff8f45b 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -48,6 +48,10 @@ firewall_type="UNKNOWN" # Firewall type (see /etc/rc.firewall) firewall_quiet="NO" # Set to YES to suppress rule display firewall_logging="NO" # Set to YES to enable events logging firewall_flags="" # Flags passed to ipfw when type is a file +ip_portrange_first="NO" # Set first dynamically allocated port +ip_portrange_last="NO" # Set last dynamically allocated port +ipsec_enable="NO" # Set to YES to run setkey on ipsec_file +ipsec_file="/etc/ipsec.conf" # Name of config file for setkey natd_program="/sbin/natd" # path to natd, if you want a different one. natd_enable="NO" # Enable natd (if firewall_enable == YES). natd_interface="fxp0" # Public interface or IPaddress to use. @@ -158,8 +162,6 @@ nis_yppasswdd_flags="" # Flags to rpc.yppasswdd (if enabled). defaultrouter="NO" # Set to default gateway (or NO). static_routes="" # Set to static route list (or leave empty). gateway_enable="NO" # Set to YES if this host will be a gateway. -ipsec_enable="NO" # Set to YES to run setkey on ipsec_file -ipsec_file="/etc/ipsec.conf" # Name of config file for setkey router_enable="NO" # Set to YES to enable a routing daemon. router="routed" # Name of routing daemon to use if enabled. router_flags="-q" # Flags for routing daemon. |