60 lines
1.5 KiB
Bash
60 lines
1.5 KiB
Bash
#!/bin/sh
|
|
|
|
# This is rc.conf defaults for rc.router - a file full of useful
|
|
# variables that you can set to change the default startup behavior
|
|
# of your system. You should not edit this file! Put any
|
|
# overrides into one of the ${rc_conf_files} instead and you will
|
|
# be able to update these defaults later without spamming your
|
|
# local configuration information.
|
|
#
|
|
# The ${rc_conf_files} files should only contain values which override
|
|
# values set in this file. This eases the upgrade path when defaults
|
|
# are changed and new features are added.
|
|
#
|
|
# All arguments must be in double or single quotes.
|
|
#
|
|
# For a more detailed explanation of all the rc.conf variables, please
|
|
# refer to the rc.conf(5) manual page.
|
|
#
|
|
# For the `rc.router` project, router configurations should be tuned in
|
|
# `${rc_router_conf_dir}/rc.conf`.
|
|
|
|
rc_router_debug="NO"
|
|
|
|
generate_internal_dhcpv4_enable='YES'
|
|
generate_isp_dhcp_enable='YES'
|
|
generate_rtadvd_conf_enable="YES"
|
|
|
|
rc_router_gen_dir="${rc_router_dir}/gen"
|
|
|
|
localnet_enable='NO'
|
|
|
|
rtadvd_pltimedecr='NO'
|
|
rtadvd_vltimedecr='NO'
|
|
|
|
rtadvd_dns_server="2606:4700:4700::1111"
|
|
|
|
dhcpv4_dns="1.1.1.1"
|
|
dhcpd_conf="${rc_router_gen_dir}/dhcpd.conf"
|
|
|
|
v4_net="192.168"
|
|
dhcpv4_pool_lo="100"
|
|
dhcpv4_pool_hi="200"
|
|
|
|
rc_router_network_name="Default Network Name"
|
|
rc_router_ula_prefix_size="48"
|
|
|
|
fib_setup_enable="YES"
|
|
rc_router_fibs="1"
|
|
|
|
|
|
route_policy_enable="YES"
|
|
route_policy_file="${rc_router_gen_dir}/pf.route-policies.conf"
|
|
|
|
allow_hosts_enable="YES"
|
|
allow_hosts_rules="${rc_router_gen_dir}/pf.rules.conf"
|
|
|
|
rtsold_flags="-F"
|
|
|
|
# vim: ft=bash
|