Last active
April 11, 2017 13:46
-
-
Save wallnerryan/62e7234dffd054a5306a607c3888e413 to your computer and use it in GitHub Desktop.
sysctl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/sysctl.d/99quagga_defaults.conf (but a filter aint one) | |
# Place this file at the location above and reload the device. | |
# or run the sysctl -p /etc/sysctl.d/99quagga_defaults.conf | |
# rhel 7 need to set rp filter https://access.redhat.com/solutions/53031 | |
net.ipv4.conf.all.accept_local = 0 | |
net.ipv4.conf.all.accept_redirects = 0 | |
net.ipv4.conf.all.accept_source_route = 0 | |
net.ipv4.conf.all.bootp_relay = 0 | |
net.ipv4.conf.all.disable_policy = 0 | |
net.ipv4.conf.all.disable_xfrm = 0 | |
net.ipv4.conf.all.force_igmp_version = 0 | |
net.ipv4.conf.all.forwarding = 1 | |
net.ipv4.conf.all.igmpv2_unsolicited_report_interval = 10000 | |
net.ipv4.conf.all.igmpv3_unsolicited_report_interval = 1000 | |
net.ipv4.conf.all.ignore_routes_with_linkdown = 1 | |
net.ipv4.conf.all.log_martians = 0 | |
net.ipv4.conf.all.mc_forwarding = 0 | |
net.ipv4.conf.all.medium_id = 0 | |
net.ipv4.conf.all.promote_secondaries = 0 | |
net.ipv4.conf.all.proxy_arp = 0 | |
net.ipv4.conf.all.proxy_arp_pvlan = 0 | |
net.ipv4.conf.all.route_localnet = 0 | |
net.ipv4.conf.all.secure_redirects = 1 | |
net.ipv4.conf.all.send_redirects = 1 | |
net.ipv4.conf.all.shared_media = 1 | |
net.ipv4.conf.all.src_valid_mark = 0 | |
net.ipv4.conf.all.tag = 0 | |
net.ipv6.conf.all.accept_dad = 2 | |
net.ipv6.conf.all.accept_ra = 1 | |
net.ipv6.conf.all.accept_ra_defrtr = 1 | |
net.ipv6.conf.all.accept_ra_from_local = 0 | |
net.ipv6.conf.all.accept_ra_min_hop_limit = 1 | |
net.ipv6.conf.all.accept_ra_mtu = 1 | |
net.ipv6.conf.all.accept_ra_pinfo = 1 | |
net.ipv6.conf.all.accept_ra_rt_info_max_plen = 0 | |
net.ipv6.conf.all.accept_ra_rtr_pref = 1 | |
net.ipv6.conf.all.accept_redirects = 1 | |
net.ipv6.conf.all.accept_source_route = 0 | |
net.ipv6.conf.all.autoconf = 1 | |
net.ipv6.conf.all.dad_transmits = 1 | |
net.ipv6.conf.all.disable_ipv6 = 0 | |
net.ipv6.conf.all.force_mld_version = 0 | |
net.ipv6.conf.all.force_tllao = 0 | |
net.ipv6.conf.all.forwarding = 1 | |
net.ipv6.conf.all.hop_limit = 64 | |
net.ipv6.conf.all.ignore_routes_with_linkdown = 1 | |
net.ipv6.conf.all.keep_addr_on_down = 1 | |
net.ipv6.conf.all.max_addresses = 16 | |
net.ipv6.conf.all.max_desync_factor = 600 | |
net.ipv6.conf.all.mc_forwarding = 0 | |
net.ipv6.conf.all.mldv1_unsolicited_report_interval = 10000 | |
net.ipv6.conf.all.mldv2_unsolicited_report_interval = 1000 | |
net.ipv6.conf.all.mtu = 1280 | |
net.ipv6.conf.all.ndisc_notify = 0 | |
net.ipv6.conf.all.optimistic_dad = 0 | |
net.ipv6.conf.all.proxy_ndp = 0 | |
net.ipv6.conf.all.regen_max_retry = 3 | |
net.ipv6.conf.all.router_probe_interval = 60 | |
net.ipv6.conf.all.router_solicitation_delay = 1 | |
net.ipv6.conf.all.router_solicitation_interval = 4 | |
net.ipv6.conf.all.router_solicitations = 3 | |
net.ipv6.conf.all.suppress_frag_ndisc = 1 | |
net.ipv6.conf.all.temp_prefered_lft = 86400 | |
net.ipv6.conf.all.temp_valid_lft = 604800 | |
net.ipv6.conf.all.use_optimistic = 0 | |
net.ipv6.conf.all.use_tempaddr = 0 | |
net.ipv4.conf.all.arp_accept = 1 | |
net.ipv4.conf.all.arp_announce = 0 | |
net.ipv4.conf.all.arp_filter = 0 | |
net.ipv4.conf.all.arp_ignore = 0 | |
net.ipv4.conf.all.arp_notify = 0 | |
net.ipv4.conf.all.proxy_arp = 0 | |
net.ipv4.conf.all.rp_filter = 0 | |
net.ipv4.conf.em1.arp_accept = 1 | |
net.ipv4.conf.em1.arp_announce = 0 | |
net.ipv4.conf.em1.arp_filter = 0 | |
net.ipv4.conf.em1.arp_ignore = 0 | |
net.ipv4.conf.em1.arp_notify = 0 | |
net.ipv4.conf.em1.proxy_arp = 0 | |
net.ipv4.conf.em1.rp_filter = 0 | |
net.ipv4.conf.em2.arp_accept = 1 | |
net.ipv4.conf.em2.arp_announce = 0 | |
net.ipv4.conf.em2.arp_filter = 0 | |
net.ipv4.conf.em2.arp_ignore = 0 | |
net.ipv4.conf.em2.arp_notify = 0 | |
net.ipv4.conf.em2.proxy_arp = 0 | |
net.ipv4.conf.em2.rp_filter = 0 | |
net.ipv4.conf.lo.arp_accept = 1 | |
net.ipv4.conf.lo.arp_announce = 0 | |
net.ipv4.conf.lo.arp_filter = 0 | |
net.ipv4.conf.lo.arp_ignore = 0 | |
net.ipv4.conf.lo.arp_notify = 0 | |
net.ipv4.conf.lo.proxy_arp = 0 | |
net.ipv4.conf.lo.rp_filter = 0 | |
net.ipv4.conf.default.arp_accept = 1 | |
net.ipv4.conf.default.arp_announce = 0 | |
net.ipv4.conf.default.arp_filter = 0 | |
net.ipv4.conf.default.arp_ignore = 0 | |
net.ipv4.conf.default.arp_notify = 0 | |
net.ipv4.conf.default.proxy_arp = 0 | |
net.ipv4.conf.default.rp_filter = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment