Traversing bridge

3 posts / 0 new
Last post
#1 Tue, 2013-11-19 14:12
isangaft220
  • isangaft220's picture
  • Offline
  • Last seen: 4 years 4 months ago
  • Joined: 2013-11-19

Hello, I am new to these forums and I might as well introduce myself briefly before I get started. My name is Isan (I go by many handles, but this one is my most well-known online), I must mention I am not a Linux newbie and have been working with Linux (especially in the Networking and Hosting fields) for a good 10 years, and recently decided to replace my existing highly modified IPCop installation (after a bit of testing) with alpinelinux, hoping to evade an issue I was having.

I have successfully configured the majority of this installation as a wireless bridging router/firewall, however I seem to be having an issue on one of my bridging interfaces... specifically my wireless interface cannot communicate with its corresponding physical LAN interface. I understand that setting net.bridge.bridge-nf-call-arptables, net.bridge.bridge-nf-call-ip6tables and net.bridge.bridge-nf-call-iptables to 0 should result in bypassing iptables to achieve the desired effect, however this results in being unable to receive DHCP, not to mention not being able to access the outside network as well as the local network(s) I wish to be able to access from the wireless interface (Packets across the bridge return with "Destination host unreachable" and packets to the firewall get dropped); with said variables set to 1, iptables drops the bridged packets with no problem connecting to other networks. Something tells me this is something simple I'm overlooking, but I cannot figure out what exactly... The answer keeps evading me.

Simply, I am trying to access a device on a switch on eth1 (on vlan 2, aka eth1.2), from a device on wlan0 (which is created and added to the bridge through hostapd) across bridge br0.

My current configuration is as follows:
/etc/network/interfaces:

auto lo
iface lo inet loopback
 
auto eth2
iface eth2 inet dhcp
        hostname security
 
auto br0
iface br0 inet static
        pre-up brctl addbr $IFACE
        address 10.0.0.1
        netmask 255.192.0.0
        post-down ip link set $IFACE down
        post-down brctl delbr $IFACE
 
auto br1
iface br1 inet static
        pre-up brctl addbr $IFACE
        address 10.64.0.1
        netmask 255.192.0.0
        post-down ip link set $IFACE down
        post-down brctl delbr $IFACE
 
auto br2
iface br2 inet static
        pre-up brctl addbr $IFACE
        address 10.128.0.1
        netmask 255.192.0.0
        post-down ip link set $IFACE down
        post-down brctl delbr $IFACE
 
auto eth1
iface eth1 inet manual
        pre-up ip link set $IFACE promisc on up
        pre-up vconfig add $IFACE 2
        pre-up vconfig add $IFACE 3
        pre-up vconfig add $IFACE 4
        post-down vconfig rem $IFACE.2
        post-down vconfig rem $IFACE.3
        post-down vconfig rem $IFACE.4
        post-down ip link set $IFACE down
 
auto eth1.2
iface eth1.2 inet manual
        pre-up ip link set $IFACE promisc on up
        pre-up brctl addif br0 $IFACE
        post-down brctl delif br0 $IFACE
        post-down ip link set $IFACE down
 
auto eth1.3
iface eth1.3 inet manual
        pre-up ip link set $IFACE up
        pre-up brctl addif br1 $IFACE
        post-down brctl delif br1 $IFACE
        post-down ip link set $IFACE down
 
auto eth1.4
iface eth1.4 inet manual
        pre-up ip link set $IFACE promisc on up
        pre-up brctl addif br2 $IFACE
        post-down brctl delif br2 $IFACE
        post-down ip link set $IFACE down

hostapd.conf:

interface=wlan0
bridge=br0
driver=nl80211
logger_syslog=-1
logger_syslog_level=2
logger_stdout=-1
logger_stdout_level=2
dump_file=/tmp/hostapd.dump
ctrl_interface=/var/run/hostapd
ctrl_interface_group=0
ssid=QMX-Private
country_code=US
ieee80211d=1
hw_mode=g
channel=8
beacon_int=100
dtim_period=2
max_num_sta=255
rts_threshold=2347
fragm_threshold=2346
macaddr_acl=0
#auth_algs=3
auth_algs=1
ignore_broadcast_ssid=0
wmm_enabled=1
wmm_ac_bk_cwmin=4
wmm_ac_bk_cwmax=10
wmm_ac_bk_aifs=7
wmm_ac_bk_txop_limit=0
wmm_ac_bk_acm=0
wmm_ac_be_aifs=3
wmm_ac_be_cwmin=4
wmm_ac_be_cwmax=10
wmm_ac_be_txop_limit=0
wmm_ac_be_acm=0
wmm_ac_vi_aifs=2
wmm_ac_vi_cwmin=3
wmm_ac_vi_cwmax=4
wmm_ac_vi_txop_limit=94
wmm_ac_vi_acm=0
wmm_ac_vo_aifs=2
wmm_ac_vo_cwmin=2
wmm_ac_vo_cwmax=3
wmm_ac_vo_txop_limit=47
wmm_ac_vo_acm=0
ieee80211n=1
ht_capab=[GF][SHORT-GI-20][SHORT-GI-40]
require_ht=0
ieee8021x=1
eapol_version=2
eap_server=1
eap_user_file=/etc/hostapd/hostapd.eap_user
ca_cert=/etc/ssl/cacrlbundle.pem
server_cert=/etc/ssl/certs/hostcert.pem
private_key=/etc/ssl/certs/hostkey.pem
check_crl=0
dh_file=/etc/ssl/private/dh1024.pem
own_ip_addr=127.0.0.1
wpa=2
wpa_key_mgmt=WPA-EAP
wpa_pairwise=CCMP
 
bss=wlan0_0
bssid=00:22:6b:a6:bb:4d
ssid=QMX-Public
wpa=0
bridge=br1
hw_mode=g
wmm_enabled=1
wme_enabled=1
ieee80211n=1
ht_capab=[GF][SHORT-GI-20][SHORT-GI-40]
require_ht=0

awall main policy (not including defaults and services, services includes added services fwssh, fwhttps and teamspeak):

{
  "description": "Policy",
 
  "variable": {
                "red_if": "eth2",
                "green_if": "br0",
                "blue_if": "br1",
                "orange_if": "br2",
                "zeus": "10.129.10.1",
                "hermes": "10.129.10.4"
  },
 
  "zone": {
    "red": { "iface": "$red_if" },
    "green": { "iface": "$green_if" },
    "blue": { "iface": "$blue_if" },
    "orange": { "iface": "$orange_if" }
  },
 
  "policy": [
    { "in": "green", "out": "red", "action": "accept" },
    { "in": "blue", "out": "red", "action": "accept" },
    { "in": "orange", "out": "red", "action": "accept" },
    { "in": "green", "out": "orange", "action": "accept" },
/*    { "in": "green", "out": "green", "action": "accept" },
    { "in": "orange", "out": "orange", "action": "accept" },*/
    { "in": "green", "out": "_fw", "action": "accept" },
    { "in": "_fw", "action": "accept" },
    { "in": "orange", "out": "green", "action": "drop" },
    { "in": "orange", "out": "blue", "action": "drop" },
    { "in": "blue", "out": "green", "action": "drop" },
    { "in": "red", "action": "drop" }
    /*{ "action": "reject"}*/
  ]
 
  "snat": [
      { "out": "red" }
  ]
 
  "dnat": [
      { 
        "in": "red",
        "service": "http",
        "to-addr": "$zeus"
      },
      {
        "in": "red",
        "service": "https",
        "to-addr": "$zeus"
      },
      {
        "in": "red",
        "service": "teamspeak",
        "to-addr": "$hermes"
      }
 ]
 
  "filter": [
    {
      "in": "red",
      "service": "ping",
      "action": "accept",
      "flow-limit": { "count": 10, "interval": 6 }
    },
    { 
      "in": "green",
      "out": "_fw",
      "service": [ "dns", "dhcp", "ntp", "ping", "fwssh", "fwhttps" ],
      "action": "accept"
    },
 
    { 
      "in": "blue",
      "out": "_fw",
      "service": [ "dns", "dhcp", "ntp", "ping" ],
      "action": "accept"
    },
    { 
      "in": "orange",
      "out": "_fw",
      "service": [ "dns", "ntp", "ping" ],
      "action": "accept"
    },
    {
      "in": "green",
      "out": "orange",
      "service": "ssh",
      "action": "accept"
    },
    {
      "in": "red",
      "dest": "$hermes",
      "service": "teamspeak",
      "action": "accept"
    },
    {
      "in": "red",
      "dest": "$zeus",
      "service": "http",
      "action": "accept"
    },
    {
      "in": "red",
      "dest": "$zeus",
      "service": "https",
      "action": "accept"
    }
  ]
}

iptables -S:

-P INPUT DROP
-P FORWARD DROP
-P OUTPUT DROP
-N icmp-routing
-N limit-ping-0
-N logdrop-0
-N logdrop-1
-N logdrop-2
-N logdrop-3
-N logdrop-ping-0
-A INPUT -i eth2 -p icmp -m icmp --icmp-type 8 -j limit-ping-0
-A INPUT -m conntrack --ctstate ESTABLISHED -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -i br0 -p icmp -m icmp --icmp-type 8 -j ACCEPT
-A INPUT -i br0 -p udp -m multiport --dports 53,67,68,123 -j ACCEPT
-A INPUT -i br0 -p tcp -m multiport --dports 53,8022,8443 -j ACCEPT
-A INPUT -i br1 -p icmp -m icmp --icmp-type 8 -j ACCEPT
-A INPUT -i br1 -p udp -m multiport --dports 53,67,68,123 -j ACCEPT
-A INPUT -i br1 -p tcp -m tcp --dport 53 -j ACCEPT
-A INPUT -i br2 -p icmp -m icmp --icmp-type 8 -j ACCEPT
-A INPUT -i br2 -p udp -m multiport --dports 53,123 -j ACCEPT
-A INPUT -i br2 -p tcp -m tcp --dport 53 -j ACCEPT
-A INPUT -d 10.129.10.4/32 -i eth2 -p udp -m udp --dport 9987 -j ACCEPT
-A INPUT -d 10.129.10.1/32 -i eth2 -p tcp -m tcp --dport 80 -j ACCEPT
-A INPUT -d 10.129.10.1/32 -i eth2 -p tcp -m tcp --dport 443 -j ACCEPT
-A INPUT -p icmp -j icmp-routing
-A INPUT -i br0 -j ACCEPT
-A INPUT -i eth2 -j logdrop-3
-A FORWARD -i eth2 -p icmp -m icmp --icmp-type 8 -j limit-ping-0
-A FORWARD -m conntrack --ctstate ESTABLISHED -j ACCEPT
-A FORWARD -i br0 -o br2 -p tcp -m tcp --dport 22 -j ACCEPT
-A FORWARD -d 10.129.10.4/32 -i eth2 -p udp -m udp --dport 9987 -j ACCEPT
-A FORWARD -d 10.129.10.1/32 -i eth2 -p tcp -m tcp --dport 80 -j ACCEPT
-A FORWARD -d 10.129.10.1/32 -i eth2 -p tcp -m tcp --dport 443 -j ACCEPT
-A FORWARD -p icmp -j icmp-routing
-A FORWARD -i br0 -o eth2 -j ACCEPT
-A FORWARD -i br1 -o eth2 -j ACCEPT
-A FORWARD -i br2 -o eth2 -j ACCEPT
-A FORWARD -i br0 -o br2 -j ACCEPT
-A FORWARD -i br2 -o br0 -j logdrop-0
-A FORWARD -i br2 -o br1 -j logdrop-1
-A FORWARD -i br1 -o br0 -j logdrop-2
-A FORWARD -i eth2 -j logdrop-3
-A OUTPUT -m conntrack --ctstate ESTABLISHED -j ACCEPT
-A OUTPUT -o lo -j ACCEPT
-A OUTPUT -p icmp -j icmp-routing
-A OUTPUT -j ACCEPT
-A icmp-routing -p icmp -m icmp --icmp-type 3 -j ACCEPT
-A icmp-routing -p icmp -m icmp --icmp-type 11 -j ACCEPT
-A icmp-routing -p icmp -m icmp --icmp-type 12 -j ACCEPT
-A limit-ping-0 -m recent --update --seconds 6 --hitcount 10 --name limit-ping-0 --mask 255.255.255.255 --rsource -j logdrop-ping-0
-A limit-ping-0 -m recent --set --name limit-ping-0 --mask 255.255.255.255 --rsource -j ACCEPT
-A logdrop-0 -m limit --limit 1/sec -j LOG
-A logdrop-0 -j DROP
-A logdrop-1 -m limit --limit 1/sec -j LOG
-A logdrop-1 -j DROP
-A logdrop-2 -m limit --limit 1/sec -j LOG
-A logdrop-2 -j DROP
-A logdrop-3 -m limit --limit 1/sec -j LOG
-A logdrop-3 -j DROP
-A logdrop-ping-0 -m limit --limit 1/sec -j LOG
-A logdrop-ping-0 -j DROP

iptables -t nat -S

-P PREROUTING ACCEPT
-P INPUT ACCEPT
-P OUTPUT ACCEPT
-P POSTROUTING ACCEPT
-A PREROUTING -i eth2 -p tcp -m tcp --dport 80 -j DNAT --to-destination 10.129.10.1
-A PREROUTING -i eth2 -p tcp -m tcp --dport 443 -j DNAT --to-destination 10.129.10.1
-A PREROUTING -i eth2 -p udp -m udp --dport 9987 -j DNAT --to-destination 10.129.10.4
-A POSTROUTING -o eth2 -j MASQUERADE

ebtables: (empty, no rules)
arptables: (empty, no rules)

sysctl -a:

debug.exception-trace = 1
debug.kprobes-optimization = 1
dev.hpet.max-user-freq = 64
dev.parport.default.spintime = 500
dev.parport.default.timeslice = 200
dev.parport.parport0.base-addr = 888    1912
dev.parport.parport0.devices.active = none
dev.parport.parport0.dma = 3
dev.parport.parport0.irq = 7
dev.parport.parport0.modes = PCSPP
dev.parport.parport0.spintime = 500
dev.raid.speed_limit_max = 200000
dev.raid.speed_limit_min = 1000
dev.scsi.logging_level = 0
fs.aio-max-nr = 65536
fs.aio-nr = 0
fs.dentry-state = 9543  8579    45      0       0       0
fs.epoll.max_user_watches = 335492
fs.file-max = 154782
fs.file-nr = 192        0       154782
fs.inode-nr = 9476      317
fs.inode-state = 9476   317     0       0       0       0       0
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 128
fs.inotify.max_user_watches = 8192
fs.lease-break-time = 45
fs.leases-enable = 1
fs.nr_open = 1048576
fs.overflowgid = 65534
fs.overflowuid = 65534
fs.pipe-max-size = 1048576
fs.protected_hardlinks = 0
fs.protected_symlinks = 0
fs.quota.allocated_dquots = 0
fs.quota.cache_hits = 0
fs.quota.drops = 0
fs.quota.free_dquots = 0
fs.quota.lookups = 0
fs.quota.reads = 0
fs.quota.syncs = 0
fs.quota.writes = 0
fs.suid_dumpable = 0
kernel.acct = 4 2       30
kernel.acpi_video_flags = 0
kernel.auto_msgmni = 1
kernel.blk_iopoll = 1
kernel.bootloader_type = 48
kernel.bootloader_version = 0
kernel.cad_pid = 1
kernel.cap_last_cap = 36
kernel.core_pattern = core
kernel.core_pipe_limit = 0
kernel.core_uses_pid = 0
kernel.ctrl-alt-del = 0
kernel.dmesg_restrict = 0
kernel.domainname = (none)
kernel.grsecurity.chroot_caps = 1
kernel.grsecurity.chroot_deny_chmod = 1
kernel.grsecurity.chroot_deny_chroot = 1
kernel.grsecurity.chroot_deny_fchdir = 1
kernel.grsecurity.chroot_deny_mknod = 1
kernel.grsecurity.chroot_deny_mount = 1
kernel.grsecurity.chroot_deny_pivot = 1
kernel.grsecurity.chroot_deny_shmat = 1
kernel.grsecurity.chroot_deny_sysctl = 1
kernel.grsecurity.chroot_deny_unix = 1
kernel.grsecurity.chroot_enforce_chdir = 1
kernel.grsecurity.chroot_findtask = 1
kernel.grsecurity.chroot_restrict_nice = 1
kernel.grsecurity.consistent_setxid = 1
kernel.grsecurity.fifo_restrictions = 1
kernel.grsecurity.forkfail_logging = 1
kernel.grsecurity.grsec_lock = 0
kernel.grsecurity.harden_ptrace = 1
kernel.grsecurity.linking_restrictions = 1
kernel.grsecurity.ptrace_readexec = 1
kernel.grsecurity.resource_logging = 1
kernel.grsecurity.signal_logging = 1
kernel.grsecurity.timechange_logging = 1
kernel.hostname = security
kernel.hotplug = /sbin/mdev
kernel.io_delay_type = 0
kernel.keys.gc_delay = 300
kernel.keys.maxbytes = 20000
kernel.keys.maxkeys = 200
kernel.keys.root_maxbytes = 20000
kernel.keys.root_maxkeys = 200
kernel.kptr_restrict = 0
kernel.kstack_depth_to_print = 24
kernel.latencytop = 0
kernel.max_lock_depth = 1024
kernel.modprobe = /sbin/modprobe
kernel.modules_disabled = 0
kernel.msgmax = 8192
kernel.msgmnb = 16384
kernel.msgmni = 1739
kernel.ngroups_max = 65536
kernel.nmi_watchdog = 1
kernel.osrelease = 3.10.19-0-grsec
kernel.ostype = Linux
kernel.overflowgid = 65534
kernel.overflowuid = 65534
kernel.panic = 120
kernel.panic_on_io_nmi = 0
kernel.panic_on_oops = 0
kernel.panic_on_stackoverflow = 0
kernel.panic_on_unrecovered_nmi = 0
kernel.pax.softmode = 0
kernel.perf_event_max_sample_rate = 100000
kernel.perf_event_mlock_kb = 516
kernel.perf_event_paranoid = 3
kernel.pid_max = 32768
kernel.poweroff_cmd = /sbin/poweroff
kernel.print-fatal-signals = 0
kernel.printk = 1       4       1       7
kernel.printk_delay = 0
kernel.printk_ratelimit = 5
kernel.printk_ratelimit_burst = 10
kernel.pty.max = 4096
kernel.pty.nr = 1
kernel.pty.reserve = 1024
kernel.random.boot_id = dea74266-89cf-45ab-add9-9d771d3ab9d2
kernel.random.entropy_avail = 15805
kernel.random.poolsize = 16384
kernel.random.read_wakeup_threshold = 64
kernel.random.uuid = 43ef7b40-d507-4449-bba6-f7f2c6bb9390
kernel.random.write_wakeup_threshold = 128
kernel.randomize_va_space = 2
kernel.real-root-dev = 0
kernel.sched_autogroup_enabled = 1
kernel.sched_child_runs_first = 0
kernel.sched_latency_ns = 6000000
kernel.sched_migration_cost_ns = 500000
kernel.sched_min_granularity_ns = 750000
kernel.sched_nr_migrate = 32
kernel.sched_rr_timeslice_ms = 30
kernel.sched_rt_period_us = 1000000
kernel.sched_rt_runtime_us = 950000
kernel.sched_shares_window_ns = 10000000
kernel.sched_time_avg_ms = 1000
kernel.sched_tunable_scaling = 1
kernel.sched_wakeup_granularity_ns = 1000000
kernel.sem = 250        32000   32      128
kernel.shm_rmid_forced = 0
kernel.shmall = 2097152
kernel.shmmax = 33554432
kernel.shmmni = 4096
kernel.softlockup_panic = 0
kernel.sysrq = 1
kernel.tainted = 0
kernel.threads-max = 24189
kernel.timer_migration = 1
kernel.unknown_nmi_panic = 0
kernel.usermodehelper.bset = 4294967295 4294967295
kernel.usermodehelper.inheritable = 4294967295  4294967295
kernel.version = #1-Alpine SMP Thu Nov 14 07:41:01 UTC 2013
kernel.watchdog = 1
kernel.watchdog_thresh = 10
net.bridge.bridge-nf-call-arptables = 1
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
net.bridge.bridge-nf-filter-pppoe-tagged = 0
net.bridge.bridge-nf-filter-vlan-tagged = 1
net.bridge.bridge-nf-pass-vlan-input-dev = 0
net.core.dev_weight = 64
net.core.message_burst = 10
net.core.message_cost = 5
net.core.netdev_budget = 300
net.core.netdev_max_backlog = 1000
net.core.netdev_tstamp_prequeue = 1
net.core.optmem_max = 10240
net.core.rmem_default = 180224
net.core.rmem_max = 180224
net.core.rps_sock_flow_entries = 0
net.core.somaxconn = 128
net.core.warnings = 1
net.core.wmem_default = 180224
net.core.wmem_max = 180224
net.core.xfrm_acq_expires = 30
net.core.xfrm_aevent_etime = 10
net.core.xfrm_aevent_rseqth = 2
net.core.xfrm_larval_drop = 1
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.arp_accept = 0
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.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.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.rp_filter = 1
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.ipv4.conf.br0.accept_local = 0
net.ipv4.conf.br0.accept_redirects = 1
net.ipv4.conf.br0.accept_source_route = 1
net.ipv4.conf.br0.arp_accept = 0
net.ipv4.conf.br0.arp_announce = 0
net.ipv4.conf.br0.arp_filter = 0
net.ipv4.conf.br0.arp_ignore = 0
net.ipv4.conf.br0.arp_notify = 0
net.ipv4.conf.br0.bootp_relay = 0
net.ipv4.conf.br0.disable_policy = 0
net.ipv4.conf.br0.disable_xfrm = 0
net.ipv4.conf.br0.force_igmp_version = 0
net.ipv4.conf.br0.forwarding = 1
net.ipv4.conf.br0.log_martians = 0
net.ipv4.conf.br0.mc_forwarding = 0
net.ipv4.conf.br0.medium_id = 0
net.ipv4.conf.br0.promote_secondaries = 0
net.ipv4.conf.br0.proxy_arp = 0
net.ipv4.conf.br0.proxy_arp_pvlan = 0
net.ipv4.conf.br0.route_localnet = 0
net.ipv4.conf.br0.rp_filter = 1
net.ipv4.conf.br0.secure_redirects = 1
net.ipv4.conf.br0.send_redirects = 1
net.ipv4.conf.br0.shared_media = 1
net.ipv4.conf.br0.src_valid_mark = 0
net.ipv4.conf.br0.tag = 0
net.ipv4.conf.br1.accept_local = 0
net.ipv4.conf.br1.accept_redirects = 1
net.ipv4.conf.br1.accept_source_route = 1
net.ipv4.conf.br1.arp_accept = 0
net.ipv4.conf.br1.arp_announce = 0
net.ipv4.conf.br1.arp_filter = 0
net.ipv4.conf.br1.arp_ignore = 0
net.ipv4.conf.br1.arp_notify = 0
net.ipv4.conf.br1.bootp_relay = 0
net.ipv4.conf.br1.disable_policy = 0
net.ipv4.conf.br1.disable_xfrm = 0
net.ipv4.conf.br1.force_igmp_version = 0
net.ipv4.conf.br1.forwarding = 1
net.ipv4.conf.br1.log_martians = 0
net.ipv4.conf.br1.mc_forwarding = 0
net.ipv4.conf.br1.medium_id = 0
net.ipv4.conf.br1.promote_secondaries = 0
net.ipv4.conf.br1.proxy_arp = 0
net.ipv4.conf.br1.proxy_arp_pvlan = 0
net.ipv4.conf.br1.route_localnet = 0
net.ipv4.conf.br1.rp_filter = 1
net.ipv4.conf.br1.secure_redirects = 1
net.ipv4.conf.br1.send_redirects = 1
net.ipv4.conf.br1.shared_media = 1
net.ipv4.conf.br1.src_valid_mark = 0
net.ipv4.conf.br1.tag = 0
net.ipv4.conf.br2.accept_local = 0
net.ipv4.conf.br2.accept_redirects = 1
net.ipv4.conf.br2.accept_source_route = 1
net.ipv4.conf.br2.arp_accept = 0
net.ipv4.conf.br2.arp_announce = 0
net.ipv4.conf.br2.arp_filter = 0
net.ipv4.conf.br2.arp_ignore = 0
net.ipv4.conf.br2.arp_notify = 0
net.ipv4.conf.br2.bootp_relay = 0
net.ipv4.conf.br2.disable_policy = 0
net.ipv4.conf.br2.disable_xfrm = 0
net.ipv4.conf.br2.force_igmp_version = 0
net.ipv4.conf.br2.forwarding = 1
net.ipv4.conf.br2.log_martians = 0
net.ipv4.conf.br2.mc_forwarding = 0
net.ipv4.conf.br2.medium_id = 0
net.ipv4.conf.br2.promote_secondaries = 0
net.ipv4.conf.br2.proxy_arp = 0
net.ipv4.conf.br2.proxy_arp_pvlan = 0
net.ipv4.conf.br2.route_localnet = 0
net.ipv4.conf.br2.rp_filter = 1
net.ipv4.conf.br2.secure_redirects = 1
net.ipv4.conf.br2.send_redirects = 1
net.ipv4.conf.br2.shared_media = 1
net.ipv4.conf.br2.src_valid_mark = 0
net.ipv4.conf.br2.tag = 0
net.ipv4.conf.default.accept_local = 0
net.ipv4.conf.default.accept_redirects = 1
net.ipv4.conf.default.accept_source_route = 1
net.ipv4.conf.default.arp_accept = 0
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.bootp_relay = 0
net.ipv4.conf.default.disable_policy = 0
net.ipv4.conf.default.disable_xfrm = 0
net.ipv4.conf.default.force_igmp_version = 0
net.ipv4.conf.default.forwarding = 1
net.ipv4.conf.default.log_martians = 0
net.ipv4.conf.default.mc_forwarding = 0
net.ipv4.conf.default.medium_id = 0
net.ipv4.conf.default.promote_secondaries = 0
net.ipv4.conf.default.proxy_arp = 0
net.ipv4.conf.default.proxy_arp_pvlan = 0
net.ipv4.conf.default.route_localnet = 0
net.ipv4.conf.default.rp_filter = 1
net.ipv4.conf.default.secure_redirects = 1
net.ipv4.conf.default.send_redirects = 1
net.ipv4.conf.default.shared_media = 1
net.ipv4.conf.default.src_valid_mark = 0
net.ipv4.conf.default.tag = 0
net.ipv4.conf.eth0.accept_local = 0
net.ipv4.conf.eth0.accept_redirects = 1
net.ipv4.conf.eth0.accept_source_route = 1
net.ipv4.conf.eth0.arp_accept = 0
net.ipv4.conf.eth0.arp_announce = 0
net.ipv4.conf.eth0.arp_filter = 0
net.ipv4.conf.eth0.arp_ignore = 0
net.ipv4.conf.eth0.arp_notify = 0
net.ipv4.conf.eth0.bootp_relay = 0
net.ipv4.conf.eth0.disable_policy = 0
net.ipv4.conf.eth0.disable_xfrm = 0
net.ipv4.conf.eth0.force_igmp_version = 0
net.ipv4.conf.eth0.forwarding = 1
net.ipv4.conf.eth0.log_martians = 0
net.ipv4.conf.eth0.mc_forwarding = 0
net.ipv4.conf.eth0.medium_id = 0
net.ipv4.conf.eth0.promote_secondaries = 0
net.ipv4.conf.eth0.proxy_arp = 0
net.ipv4.conf.eth0.proxy_arp_pvlan = 0
net.ipv4.conf.eth0.route_localnet = 0
net.ipv4.conf.eth0.rp_filter = 1
net.ipv4.conf.eth0.secure_redirects = 1
net.ipv4.conf.eth0.send_redirects = 1
net.ipv4.conf.eth0.shared_media = 1
net.ipv4.conf.eth0.src_valid_mark = 0
net.ipv4.conf.eth0.tag = 0
net.ipv4.conf.eth1.accept_local = 0
net.ipv4.conf.eth1.accept_redirects = 1
net.ipv4.conf.eth1.accept_source_route = 1
net.ipv4.conf.eth1.arp_accept = 0
net.ipv4.conf.eth1.arp_announce = 0
net.ipv4.conf.eth1.arp_filter = 0
net.ipv4.conf.eth1.arp_ignore = 0
net.ipv4.conf.eth1.arp_notify = 0
net.ipv4.conf.eth1.bootp_relay = 0
net.ipv4.conf.eth1.disable_policy = 0
net.ipv4.conf.eth1.disable_xfrm = 0
net.ipv4.conf.eth1.force_igmp_version = 0
net.ipv4.conf.eth1.forwarding = 1
net.ipv4.conf.eth1.log_martians = 0
net.ipv4.conf.eth1.mc_forwarding = 0
net.ipv4.conf.eth1.medium_id = 0
net.ipv4.conf.eth1.promote_secondaries = 0
net.ipv4.conf.eth1.proxy_arp = 0
net.ipv4.conf.eth1.proxy_arp_pvlan = 0
net.ipv4.conf.eth1.route_localnet = 0
net.ipv4.conf.eth1.rp_filter = 1
net.ipv4.conf.eth1.secure_redirects = 1
net.ipv4.conf.eth1.send_redirects = 1
net.ipv4.conf.eth1.shared_media = 1
net.ipv4.conf.eth1.src_valid_mark = 0
net.ipv4.conf.eth1.tag = 0
net.ipv4.conf.eth1.2.accept_local = 0
net.ipv4.conf.eth1.2.accept_redirects = 1
net.ipv4.conf.eth1.2.accept_source_route = 1
net.ipv4.conf.eth1.2.arp_accept = 0
net.ipv4.conf.eth1.2.arp_announce = 0
net.ipv4.conf.eth1.2.arp_filter = 0
net.ipv4.conf.eth1.2.arp_ignore = 0
net.ipv4.conf.eth1.2.arp_notify = 0
net.ipv4.conf.eth1.2.bootp_relay = 0
net.ipv4.conf.eth1.2.disable_policy = 0
net.ipv4.conf.eth1.2.disable_xfrm = 0
net.ipv4.conf.eth1.2.force_igmp_version = 0
net.ipv4.conf.eth1.2.forwarding = 1
net.ipv4.conf.eth1.2.log_martians = 0
net.ipv4.conf.eth1.2.mc_forwarding = 0
net.ipv4.conf.eth1.2.medium_id = 0
net.ipv4.conf.eth1.2.promote_secondaries = 0
net.ipv4.conf.eth1.2.proxy_arp = 0
net.ipv4.conf.eth1.2.proxy_arp_pvlan = 0
net.ipv4.conf.eth1.2.route_localnet = 0
net.ipv4.conf.eth1.2.rp_filter = 1
net.ipv4.conf.eth1.2.secure_redirects = 1
net.ipv4.conf.eth1.2.send_redirects = 1
net.ipv4.conf.eth1.2.shared_media = 1
net.ipv4.conf.eth1.2.src_valid_mark = 0
net.ipv4.conf.eth1.2.tag = 0
net.ipv4.conf.eth1.3.accept_local = 0
net.ipv4.conf.eth1.3.accept_redirects = 1
net.ipv4.conf.eth1.3.accept_source_route = 1
net.ipv4.conf.eth1.3.arp_accept = 0
net.ipv4.conf.eth1.3.arp_announce = 0
net.ipv4.conf.eth1.3.arp_filter = 0
net.ipv4.conf.eth1.3.arp_ignore = 0
net.ipv4.conf.eth1.3.arp_notify = 0
net.ipv4.conf.eth1.3.bootp_relay = 0
net.ipv4.conf.eth1.3.disable_policy = 0
net.ipv4.conf.eth1.3.disable_xfrm = 0
net.ipv4.conf.eth1.3.force_igmp_version = 0
net.ipv4.conf.eth1.3.forwarding = 1
net.ipv4.conf.eth1.3.log_martians = 0
net.ipv4.conf.eth1.3.mc_forwarding = 0
net.ipv4.conf.eth1.3.medium_id = 0
net.ipv4.conf.eth1.3.promote_secondaries = 0
net.ipv4.conf.eth1.3.proxy_arp = 0
net.ipv4.conf.eth1.3.proxy_arp_pvlan = 0
net.ipv4.conf.eth1.3.route_localnet = 0
net.ipv4.conf.eth1.3.rp_filter = 1
net.ipv4.conf.eth1.3.secure_redirects = 1
net.ipv4.conf.eth1.3.send_redirects = 1
net.ipv4.conf.eth1.3.shared_media = 1
net.ipv4.conf.eth1.3.src_valid_mark = 0
net.ipv4.conf.eth1.3.tag = 0
net.ipv4.conf.eth1.4.accept_local = 0
net.ipv4.conf.eth1.4.accept_redirects = 1
net.ipv4.conf.eth1.4.accept_source_route = 1
net.ipv4.conf.eth1.4.arp_accept = 0
net.ipv4.conf.eth1.4.arp_announce = 0
net.ipv4.conf.eth1.4.arp_filter = 0
net.ipv4.conf.eth1.4.arp_ignore = 0
net.ipv4.conf.eth1.4.arp_notify = 0
net.ipv4.conf.eth1.4.bootp_relay = 0
net.ipv4.conf.eth1.4.disable_policy = 0
net.ipv4.conf.eth1.4.disable_xfrm = 0
net.ipv4.conf.eth1.4.force_igmp_version = 0
net.ipv4.conf.eth1.4.forwarding = 1
net.ipv4.conf.eth1.4.log_martians = 0
net.ipv4.conf.eth1.4.mc_forwarding = 0
net.ipv4.conf.eth1.4.medium_id = 0
net.ipv4.conf.eth1.4.promote_secondaries = 0
net.ipv4.conf.eth1.4.proxy_arp = 0
net.ipv4.conf.eth1.4.proxy_arp_pvlan = 0
net.ipv4.conf.eth1.4.route_localnet = 0
net.ipv4.conf.eth1.4.rp_filter = 1
net.ipv4.conf.eth1.4.secure_redirects = 1
net.ipv4.conf.eth1.4.send_redirects = 1
net.ipv4.conf.eth1.4.shared_media = 1
net.ipv4.conf.eth1.4.src_valid_mark = 0
net.ipv4.conf.eth1.4.tag = 0
net.ipv4.conf.eth2.accept_local = 0
net.ipv4.conf.eth2.accept_redirects = 1
net.ipv4.conf.eth2.accept_source_route = 1
net.ipv4.conf.eth2.arp_accept = 0
net.ipv4.conf.eth2.arp_announce = 0
net.ipv4.conf.eth2.arp_filter = 0
net.ipv4.conf.eth2.arp_ignore = 0
net.ipv4.conf.eth2.arp_notify = 0
net.ipv4.conf.eth2.bootp_relay = 0
net.ipv4.conf.eth2.disable_policy = 0
net.ipv4.conf.eth2.disable_xfrm = 0
net.ipv4.conf.eth2.force_igmp_version = 0
net.ipv4.conf.eth2.forwarding = 1
net.ipv4.conf.eth2.log_martians = 0
net.ipv4.conf.eth2.mc_forwarding = 0
net.ipv4.conf.eth2.medium_id = 0
net.ipv4.conf.eth2.promote_secondaries = 0
net.ipv4.conf.eth2.proxy_arp = 0
net.ipv4.conf.eth2.proxy_arp_pvlan = 0
net.ipv4.conf.eth2.route_localnet = 0
net.ipv4.conf.eth2.rp_filter = 1
net.ipv4.conf.eth2.secure_redirects = 1
net.ipv4.conf.eth2.send_redirects = 1
net.ipv4.conf.eth2.shared_media = 1
net.ipv4.conf.eth2.src_valid_mark = 0
net.ipv4.conf.eth2.tag = 0
net.ipv4.conf.lo.accept_local = 0
net.ipv4.conf.lo.accept_redirects = 1
net.ipv4.conf.lo.accept_source_route = 1
net.ipv4.conf.lo.arp_accept = 0
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.bootp_relay = 0
net.ipv4.conf.lo.disable_policy = 1
net.ipv4.conf.lo.disable_xfrm = 1
net.ipv4.conf.lo.force_igmp_version = 0
net.ipv4.conf.lo.forwarding = 1
net.ipv4.conf.lo.log_martians = 0
net.ipv4.conf.lo.mc_forwarding = 0
net.ipv4.conf.lo.medium_id = 0
net.ipv4.conf.lo.promote_secondaries = 0
net.ipv4.conf.lo.proxy_arp = 0
net.ipv4.conf.lo.proxy_arp_pvlan = 0
net.ipv4.conf.lo.route_localnet = 0
net.ipv4.conf.lo.rp_filter = 1
net.ipv4.conf.lo.secure_redirects = 1
net.ipv4.conf.lo.send_redirects = 1
net.ipv4.conf.lo.shared_media = 1
net.ipv4.conf.lo.src_valid_mark = 0
net.ipv4.conf.lo.tag = 0
net.ipv4.conf.wlan0.accept_local = 0
net.ipv4.conf.wlan0.accept_redirects = 1
net.ipv4.conf.wlan0.accept_source_route = 1
net.ipv4.conf.wlan0.arp_accept = 0
net.ipv4.conf.wlan0.arp_announce = 0
net.ipv4.conf.wlan0.arp_filter = 0
net.ipv4.conf.wlan0.arp_ignore = 0
net.ipv4.conf.wlan0.arp_notify = 0
net.ipv4.conf.wlan0.bootp_relay = 0
net.ipv4.conf.wlan0.disable_policy = 0
net.ipv4.conf.wlan0.disable_xfrm = 0
net.ipv4.conf.wlan0.force_igmp_version = 0
net.ipv4.conf.wlan0.forwarding = 1
net.ipv4.conf.wlan0.log_martians = 0
net.ipv4.conf.wlan0.mc_forwarding = 0
net.ipv4.conf.wlan0.medium_id = 0
net.ipv4.conf.wlan0.promote_secondaries = 0
net.ipv4.conf.wlan0.proxy_arp = 0
net.ipv4.conf.wlan0.proxy_arp_pvlan = 0
net.ipv4.conf.wlan0.route_localnet = 0
net.ipv4.conf.wlan0.rp_filter = 1
net.ipv4.conf.wlan0.secure_redirects = 1
net.ipv4.conf.wlan0.send_redirects = 1
net.ipv4.conf.wlan0.shared_media = 1
net.ipv4.conf.wlan0.src_valid_mark = 0
net.ipv4.conf.wlan0.tag = 0
net.ipv4.conf.wlan0_0.accept_local = 0
net.ipv4.conf.wlan0_0.accept_redirects = 1
net.ipv4.conf.wlan0_0.accept_source_route = 1
net.ipv4.conf.wlan0_0.arp_accept = 0
net.ipv4.conf.wlan0_0.arp_announce = 0
net.ipv4.conf.wlan0_0.arp_filter = 0
net.ipv4.conf.wlan0_0.arp_ignore = 0
net.ipv4.conf.wlan0_0.arp_notify = 0
net.ipv4.conf.wlan0_0.bootp_relay = 0
net.ipv4.conf.wlan0_0.disable_policy = 0
net.ipv4.conf.wlan0_0.disable_xfrm = 0
net.ipv4.conf.wlan0_0.force_igmp_version = 0
net.ipv4.conf.wlan0_0.forwarding = 1
net.ipv4.conf.wlan0_0.log_martians = 0
net.ipv4.conf.wlan0_0.mc_forwarding = 0
net.ipv4.conf.wlan0_0.medium_id = 0
net.ipv4.conf.wlan0_0.promote_secondaries = 0
net.ipv4.conf.wlan0_0.proxy_arp = 0
net.ipv4.conf.wlan0_0.proxy_arp_pvlan = 0
net.ipv4.conf.wlan0_0.route_localnet = 0
net.ipv4.conf.wlan0_0.rp_filter = 1
net.ipv4.conf.wlan0_0.secure_redirects = 1
net.ipv4.conf.wlan0_0.send_redirects = 1
net.ipv4.conf.wlan0_0.shared_media = 1
net.ipv4.conf.wlan0_0.src_valid_mark = 0
net.ipv4.conf.wlan0_0.tag = 0
net.ipv4.icmp_echo_ignore_all = 0
net.ipv4.icmp_echo_ignore_broadcasts = 1
net.ipv4.icmp_errors_use_inbound_ifaddr = 0
net.ipv4.icmp_ignore_bogus_error_responses = 1
net.ipv4.icmp_ratelimit = 1000
net.ipv4.icmp_ratemask = 6168
net.ipv4.igmp_max_memberships = 20
net.ipv4.igmp_max_msf = 10
net.ipv4.inet_peer_maxttl = 600
net.ipv4.inet_peer_minttl = 120
net.ipv4.inet_peer_threshold = 65664
net.ipv4.ip_default_ttl = 64
net.ipv4.ip_dynaddr = 0
net.ipv4.ip_early_demux = 1
net.ipv4.ip_forward = 1
net.ipv4.ip_local_port_range = 32768    61000
net.ipv4.ip_local_reserved_ports = 
net.ipv4.ip_no_pmtu_disc = 0
net.ipv4.ip_nonlocal_bind = 0
net.ipv4.ipfrag_high_thresh = 4194304
net.ipv4.ipfrag_low_thresh = 3145728
net.ipv4.ipfrag_max_dist = 64
net.ipv4.ipfrag_secret_interval = 600
net.ipv4.ipfrag_time = 30
net.ipv4.neigh.br0.anycast_delay = 99
net.ipv4.neigh.br0.app_solicit = 0
net.ipv4.neigh.br0.base_reachable_time = 30
net.ipv4.neigh.br0.base_reachable_time_ms = 30000
net.ipv4.neigh.br0.delay_first_probe_time = 5
net.ipv4.neigh.br0.gc_stale_time = 60
net.ipv4.neigh.br0.locktime = 99
net.ipv4.neigh.br0.mcast_solicit = 3
net.ipv4.neigh.br0.proxy_delay = 79
net.ipv4.neigh.br0.proxy_qlen = 64
net.ipv4.neigh.br0.retrans_time = 99
net.ipv4.neigh.br0.retrans_time_ms = 1000
net.ipv4.neigh.br0.ucast_solicit = 3
net.ipv4.neigh.br0.unres_qlen = 33
net.ipv4.neigh.br0.unres_qlen_bytes = 65536
net.ipv4.neigh.br1.anycast_delay = 99
net.ipv4.neigh.br1.app_solicit = 0
net.ipv4.neigh.br1.base_reachable_time = 30
net.ipv4.neigh.br1.base_reachable_time_ms = 30000
net.ipv4.neigh.br1.delay_first_probe_time = 5
net.ipv4.neigh.br1.gc_stale_time = 60
net.ipv4.neigh.br1.locktime = 99
net.ipv4.neigh.br1.mcast_solicit = 3
net.ipv4.neigh.br1.proxy_delay = 79
net.ipv4.neigh.br1.proxy_qlen = 64
net.ipv4.neigh.br1.retrans_time = 99
net.ipv4.neigh.br1.retrans_time_ms = 1000
net.ipv4.neigh.br1.ucast_solicit = 3
net.ipv4.neigh.br1.unres_qlen = 33
net.ipv4.neigh.br1.unres_qlen_bytes = 65536
net.ipv4.neigh.br2.anycast_delay = 99
net.ipv4.neigh.br2.app_solicit = 0
net.ipv4.neigh.br2.base_reachable_time = 30
net.ipv4.neigh.br2.base_reachable_time_ms = 30000
net.ipv4.neigh.br2.delay_first_probe_time = 5
net.ipv4.neigh.br2.gc_stale_time = 60
net.ipv4.neigh.br2.locktime = 99
net.ipv4.neigh.br2.mcast_solicit = 3
net.ipv4.neigh.br2.proxy_delay = 79
net.ipv4.neigh.br2.proxy_qlen = 64
net.ipv4.neigh.br2.retrans_time = 99
net.ipv4.neigh.br2.retrans_time_ms = 1000
net.ipv4.neigh.br2.ucast_solicit = 3
net.ipv4.neigh.br2.unres_qlen = 33
net.ipv4.neigh.br2.unres_qlen_bytes = 65536
net.ipv4.neigh.default.anycast_delay = 99
net.ipv4.neigh.default.app_solicit = 0
net.ipv4.neigh.default.base_reachable_time = 30
net.ipv4.neigh.default.base_reachable_time_ms = 30000
net.ipv4.neigh.default.delay_first_probe_time = 5
net.ipv4.neigh.default.gc_interval = 30
net.ipv4.neigh.default.gc_stale_time = 60
net.ipv4.neigh.default.gc_thresh1 = 128
net.ipv4.neigh.default.gc_thresh2 = 512
net.ipv4.neigh.default.gc_thresh3 = 1024
net.ipv4.neigh.default.locktime = 99
net.ipv4.neigh.default.mcast_solicit = 3
net.ipv4.neigh.default.proxy_delay = 79
net.ipv4.neigh.default.proxy_qlen = 64
net.ipv4.neigh.default.retrans_time = 99
net.ipv4.neigh.default.retrans_time_ms = 1000
net.ipv4.neigh.default.ucast_solicit = 3
net.ipv4.neigh.default.unres_qlen = 33
net.ipv4.neigh.default.unres_qlen_bytes = 65536
net.ipv4.neigh.eth0.anycast_delay = 99
net.ipv4.neigh.eth0.app_solicit = 0
net.ipv4.neigh.eth0.base_reachable_time = 30
net.ipv4.neigh.eth0.base_reachable_time_ms = 30000
net.ipv4.neigh.eth0.delay_first_probe_time = 5
net.ipv4.neigh.eth0.gc_stale_time = 60
net.ipv4.neigh.eth0.locktime = 99
net.ipv4.neigh.eth0.mcast_solicit = 3
net.ipv4.neigh.eth0.proxy_delay = 79
net.ipv4.neigh.eth0.proxy_qlen = 64
net.ipv4.neigh.eth0.retrans_time = 99
net.ipv4.neigh.eth0.retrans_time_ms = 1000
net.ipv4.neigh.eth0.ucast_solicit = 3
net.ipv4.neigh.eth0.unres_qlen = 33
net.ipv4.neigh.eth0.unres_qlen_bytes = 65536
net.ipv4.neigh.eth1.anycast_delay = 99
net.ipv4.neigh.eth1.app_solicit = 0
net.ipv4.neigh.eth1.base_reachable_time = 30
net.ipv4.neigh.eth1.base_reachable_time_ms = 30000
net.ipv4.neigh.eth1.delay_first_probe_time = 5
net.ipv4.neigh.eth1.gc_stale_time = 60
net.ipv4.neigh.eth1.locktime = 99
net.ipv4.neigh.eth1.mcast_solicit = 3
net.ipv4.neigh.eth1.proxy_delay = 79
net.ipv4.neigh.eth1.proxy_qlen = 64
net.ipv4.neigh.eth1.retrans_time = 99
net.ipv4.neigh.eth1.retrans_time_ms = 1000
net.ipv4.neigh.eth1.ucast_solicit = 3
net.ipv4.neigh.eth1.unres_qlen = 33
net.ipv4.neigh.eth1.unres_qlen_bytes = 65536
net.ipv4.neigh.eth1.2.anycast_delay = 99
net.ipv4.neigh.eth1.2.app_solicit = 0
net.ipv4.neigh.eth1.2.base_reachable_time = 30
net.ipv4.neigh.eth1.2.base_reachable_time_ms = 30000
net.ipv4.neigh.eth1.2.delay_first_probe_time = 5
net.ipv4.neigh.eth1.2.gc_stale_time = 60
net.ipv4.neigh.eth1.2.locktime = 99
net.ipv4.neigh.eth1.2.mcast_solicit = 3
net.ipv4.neigh.eth1.2.proxy_delay = 79
net.ipv4.neigh.eth1.2.proxy_qlen = 64
net.ipv4.neigh.eth1.2.retrans_time = 99
net.ipv4.neigh.eth1.2.retrans_time_ms = 1000
net.ipv4.neigh.eth1.2.ucast_solicit = 3
net.ipv4.neigh.eth1.2.unres_qlen = 33
net.ipv4.neigh.eth1.2.unres_qlen_bytes = 65536
net.ipv4.neigh.eth1.3.anycast_delay = 99
net.ipv4.neigh.eth1.3.app_solicit = 0
net.ipv4.neigh.eth1.3.base_reachable_time = 30
net.ipv4.neigh.eth1.3.base_reachable_time_ms = 30000
net.ipv4.neigh.eth1.3.delay_first_probe_time = 5
net.ipv4.neigh.eth1.3.gc_stale_time = 60
net.ipv4.neigh.eth1.3.locktime = 99
net.ipv4.neigh.eth1.3.mcast_solicit = 3
net.ipv4.neigh.eth1.3.proxy_delay = 79
net.ipv4.neigh.eth1.3.proxy_qlen = 64
net.ipv4.neigh.eth1.3.retrans_time = 99
net.ipv4.neigh.eth1.3.retrans_time_ms = 1000
net.ipv4.neigh.eth1.3.ucast_solicit = 3
net.ipv4.neigh.eth1.3.unres_qlen = 33
net.ipv4.neigh.eth1.3.unres_qlen_bytes = 65536
net.ipv4.neigh.eth1.4.anycast_delay = 99
net.ipv4.neigh.eth1.4.app_solicit = 0
net.ipv4.neigh.eth1.4.base_reachable_time = 30
net.ipv4.neigh.eth1.4.base_reachable_time_ms = 30000
net.ipv4.neigh.eth1.4.delay_first_probe_time = 5
net.ipv4.neigh.eth1.4.gc_stale_time = 60
net.ipv4.neigh.eth1.4.locktime = 99
net.ipv4.neigh.eth1.4.mcast_solicit = 3
net.ipv4.neigh.eth1.4.proxy_delay = 79
net.ipv4.neigh.eth1.4.proxy_qlen = 64
net.ipv4.neigh.eth1.4.retrans_time = 99
net.ipv4.neigh.eth1.4.retrans_time_ms = 1000
net.ipv4.neigh.eth1.4.ucast_solicit = 3
net.ipv4.neigh.eth1.4.unres_qlen = 33
net.ipv4.neigh.eth1.4.unres_qlen_bytes = 65536
net.ipv4.neigh.eth2.anycast_delay = 99
net.ipv4.neigh.eth2.app_solicit = 0
net.ipv4.neigh.eth2.base_reachable_time = 30
net.ipv4.neigh.eth2.base_reachable_time_ms = 30000
net.ipv4.neigh.eth2.delay_first_probe_time = 5
net.ipv4.neigh.eth2.gc_stale_time = 60
net.ipv4.neigh.eth2.locktime = 99
net.ipv4.neigh.eth2.mcast_solicit = 3
net.ipv4.neigh.eth2.proxy_delay = 79
net.ipv4.neigh.eth2.proxy_qlen = 64
net.ipv4.neigh.eth2.retrans_time = 99
net.ipv4.neigh.eth2.retrans_time_ms = 1000
net.ipv4.neigh.eth2.ucast_solicit = 3
net.ipv4.neigh.eth2.unres_qlen = 33
net.ipv4.neigh.eth2.unres_qlen_bytes = 65536
net.ipv4.neigh.lo.anycast_delay = 99
net.ipv4.neigh.lo.app_solicit = 0
net.ipv4.neigh.lo.base_reachable_time = 30
net.ipv4.neigh.lo.base_reachable_time_ms = 30000
net.ipv4.neigh.lo.delay_first_probe_time = 5
net.ipv4.neigh.lo.gc_stale_time = 60
net.ipv4.neigh.lo.locktime = 99
net.ipv4.neigh.lo.mcast_solicit = 3
net.ipv4.neigh.lo.proxy_delay = 79
net.ipv4.neigh.lo.proxy_qlen = 64
net.ipv4.neigh.lo.retrans_time = 99
net.ipv4.neigh.lo.retrans_time_ms = 1000
net.ipv4.neigh.lo.ucast_solicit = 3
net.ipv4.neigh.lo.unres_qlen = 33
net.ipv4.neigh.lo.unres_qlen_bytes = 65536
net.ipv4.neigh.wlan0.anycast_delay = 99
net.ipv4.neigh.wlan0.app_solicit = 0
net.ipv4.neigh.wlan0.base_reachable_time = 30
net.ipv4.neigh.wlan0.base_reachable_time_ms = 30000
net.ipv4.neigh.wlan0.delay_first_probe_time = 5
net.ipv4.neigh.wlan0.gc_stale_time = 60
net.ipv4.neigh.wlan0.locktime = 99
net.ipv4.neigh.wlan0.mcast_solicit = 3
net.ipv4.neigh.wlan0.proxy_delay = 79
net.ipv4.neigh.wlan0.proxy_qlen = 64
net.ipv4.neigh.wlan0.retrans_time = 99
net.ipv4.neigh.wlan0.retrans_time_ms = 1000
net.ipv4.neigh.wlan0.ucast_solicit = 3
net.ipv4.neigh.wlan0.unres_qlen = 33
net.ipv4.neigh.wlan0.unres_qlen_bytes = 65536
net.ipv4.neigh.wlan0_0.anycast_delay = 99
net.ipv4.neigh.wlan0_0.app_solicit = 0
net.ipv4.neigh.wlan0_0.base_reachable_time = 30
net.ipv4.neigh.wlan0_0.base_reachable_time_ms = 30000
net.ipv4.neigh.wlan0_0.delay_first_probe_time = 5
net.ipv4.neigh.wlan0_0.gc_stale_time = 60
net.ipv4.neigh.wlan0_0.locktime = 99
net.ipv4.neigh.wlan0_0.mcast_solicit = 3
net.ipv4.neigh.wlan0_0.proxy_delay = 79
net.ipv4.neigh.wlan0_0.proxy_qlen = 64
net.ipv4.neigh.wlan0_0.retrans_time = 99
net.ipv4.neigh.wlan0_0.retrans_time_ms = 1000
net.ipv4.neigh.wlan0_0.ucast_solicit = 3
net.ipv4.neigh.wlan0_0.unres_qlen = 33
net.ipv4.neigh.wlan0_0.unres_qlen_bytes = 65536
net.ipv4.netfilter.ip_conntrack_buckets = 16384
net.ipv4.netfilter.ip_conntrack_checksum = 1
net.ipv4.netfilter.ip_conntrack_count = 23
net.ipv4.netfilter.ip_conntrack_generic_timeout = 600
net.ipv4.netfilter.ip_conntrack_icmp_timeout = 30
net.ipv4.netfilter.ip_conntrack_log_invalid = 0
net.ipv4.netfilter.ip_conntrack_max = 65536
net.ipv4.netfilter.ip_conntrack_tcp_be_liberal = 0
net.ipv4.netfilter.ip_conntrack_tcp_loose = 1
net.ipv4.netfilter.ip_conntrack_tcp_max_retrans = 3
net.ipv4.netfilter.ip_conntrack_tcp_timeout_close = 10
net.ipv4.netfilter.ip_conntrack_tcp_timeout_close_wait = 60
net.ipv4.netfilter.ip_conntrack_tcp_timeout_established = 432000
net.ipv4.netfilter.ip_conntrack_tcp_timeout_fin_wait = 120
net.ipv4.netfilter.ip_conntrack_tcp_timeout_last_ack = 30
net.ipv4.netfilter.ip_conntrack_tcp_timeout_max_retrans = 300
net.ipv4.netfilter.ip_conntrack_tcp_timeout_syn_recv = 60
net.ipv4.netfilter.ip_conntrack_tcp_timeout_syn_sent = 120
net.ipv4.netfilter.ip_conntrack_tcp_timeout_syn_sent2 = 120
net.ipv4.netfilter.ip_conntrack_tcp_timeout_time_wait = 120
net.ipv4.netfilter.ip_conntrack_udp_timeout = 30
net.ipv4.netfilter.ip_conntrack_udp_timeout_stream = 180
net.ipv4.ping_group_range = 1   0
net.ipv4.route.error_burst = 1500
net.ipv4.route.error_cost = 300
sysctl: error reading key 'net.ipv4.route.flush': Permission denied
net.ipv4.route.gc_elasticity = 8
net.ipv4.route.gc_interval = 60
net.ipv4.route.gc_min_interval = 0
net.ipv4.route.gc_min_interval_ms = 500
net.ipv4.route.gc_thresh = -1
net.ipv4.route.gc_timeout = 300
net.ipv4.route.max_size = 2147483647
net.ipv4.route.min_adv_mss = 256
net.ipv4.route.min_pmtu = 552
net.ipv4.route.mtu_expires = 600
net.ipv4.route.redirect_load = 6
net.ipv4.route.redirect_number = 9
net.ipv4.route.redirect_silence = 6144
net.ipv4.tcp_abort_on_overflow = 0
net.ipv4.tcp_adv_win_scale = 1
net.ipv4.tcp_allowed_congestion_control = cubic reno
net.ipv4.tcp_app_win = 31
net.ipv4.tcp_available_congestion_control = cubic reno
net.ipv4.tcp_base_mss = 512
net.ipv4.tcp_challenge_ack_limit = 100
net.ipv4.tcp_congestion_control = cubic
net.ipv4.tcp_dma_copybreak = 4096
net.ipv4.tcp_dsack = 1
net.ipv4.tcp_early_retrans = 3
net.ipv4.tcp_ecn = 2
net.ipv4.tcp_fack = 1
net.ipv4.tcp_fastopen = 0
net.ipv4.tcp_fastopen_key = 583a1016-30c23754-29691a64-c3a05cb6
net.ipv4.tcp_fin_timeout = 60
net.ipv4.tcp_frto = 2
net.ipv4.tcp_keepalive_intvl = 75
net.ipv4.tcp_keepalive_probes = 9
net.ipv4.tcp_keepalive_time = 7200
net.ipv4.tcp_limit_output_bytes = 131072
net.ipv4.tcp_low_latency = 0
net.ipv4.tcp_max_orphans = 4096
net.ipv4.tcp_max_ssthresh = 0
net.ipv4.tcp_max_syn_backlog = 128
net.ipv4.tcp_max_tw_buckets = 4096
net.ipv4.tcp_mem = 19188        25585   38376
net.ipv4.tcp_min_tso_segs = 2
net.ipv4.tcp_moderate_rcvbuf = 1
net.ipv4.tcp_mtu_probing = 0
net.ipv4.tcp_no_metrics_save = 0
net.ipv4.tcp_orphan_retries = 0
net.ipv4.tcp_reordering = 3
net.ipv4.tcp_retrans_collapse = 1
net.ipv4.tcp_retries1 = 3
net.ipv4.tcp_retries2 = 15
net.ipv4.tcp_rfc1337 = 0
net.ipv4.tcp_rmem = 4096        87380   6291456
net.ipv4.tcp_sack = 1
net.ipv4.tcp_slow_start_after_idle = 1
net.ipv4.tcp_stdurg = 0
net.ipv4.tcp_syn_retries = 6
net.ipv4.tcp_synack_retries = 5
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_thin_dupack = 0
net.ipv4.tcp_thin_linear_timeouts = 0
net.ipv4.tcp_timestamps = 1
net.ipv4.tcp_tso_win_divisor = 3
net.ipv4.tcp_tw_recycle = 0
net.ipv4.tcp_tw_reuse = 0
net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_wmem = 4096        16384   4194304
net.ipv4.tcp_workaround_signed_windows = 0
net.ipv4.udp_mem = 20733        27645   41466
net.ipv4.udp_rmem_min = 4096
net.ipv4.udp_wmem_min = 4096
net.ipv4.xfrm4_gc_thresh = 1024
net.ipv6.bindv6only = 0
net.ipv6.conf.all.accept_dad = 1
net.ipv6.conf.all.accept_ra = 1
net.ipv6.conf.all.accept_ra_defrtr = 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 = 0
net.ipv6.conf.all.hop_limit = 64
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.mtu = 1280
net.ipv6.conf.all.ndisc_notify = 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.temp_prefered_lft = 86400
net.ipv6.conf.all.temp_valid_lft = 604800
net.ipv6.conf.all.use_tempaddr = 0
net.ipv6.conf.br0.accept_dad = 1
net.ipv6.conf.br0.accept_ra = 1
net.ipv6.conf.br0.accept_ra_defrtr = 1
net.ipv6.conf.br0.accept_ra_pinfo = 1
net.ipv6.conf.br0.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.br0.accept_ra_rtr_pref = 1
net.ipv6.conf.br0.accept_redirects = 1
net.ipv6.conf.br0.accept_source_route = 0
net.ipv6.conf.br0.autoconf = 1
net.ipv6.conf.br0.dad_transmits = 1
net.ipv6.conf.br0.disable_ipv6 = 0
net.ipv6.conf.br0.force_mld_version = 0
net.ipv6.conf.br0.force_tllao = 0
net.ipv6.conf.br0.forwarding = 0
net.ipv6.conf.br0.hop_limit = 64
net.ipv6.conf.br0.max_addresses = 16
net.ipv6.conf.br0.max_desync_factor = 600
net.ipv6.conf.br0.mc_forwarding = 0
net.ipv6.conf.br0.mtu = 1500
net.ipv6.conf.br0.ndisc_notify = 0
net.ipv6.conf.br0.proxy_ndp = 0
net.ipv6.conf.br0.regen_max_retry = 3
net.ipv6.conf.br0.router_probe_interval = 60
net.ipv6.conf.br0.router_solicitation_delay = 1
net.ipv6.conf.br0.router_solicitation_interval = 4
net.ipv6.conf.br0.router_solicitations = 3
net.ipv6.conf.br0.temp_prefered_lft = 86400
net.ipv6.conf.br0.temp_valid_lft = 604800
net.ipv6.conf.br0.use_tempaddr = 0
net.ipv6.conf.br1.accept_dad = 1
net.ipv6.conf.br1.accept_ra = 1
net.ipv6.conf.br1.accept_ra_defrtr = 1
net.ipv6.conf.br1.accept_ra_pinfo = 1
net.ipv6.conf.br1.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.br1.accept_ra_rtr_pref = 1
net.ipv6.conf.br1.accept_redirects = 1
net.ipv6.conf.br1.accept_source_route = 0
net.ipv6.conf.br1.autoconf = 1
net.ipv6.conf.br1.dad_transmits = 1
net.ipv6.conf.br1.disable_ipv6 = 0
net.ipv6.conf.br1.force_mld_version = 0
net.ipv6.conf.br1.force_tllao = 0
net.ipv6.conf.br1.forwarding = 0
net.ipv6.conf.br1.hop_limit = 64
net.ipv6.conf.br1.max_addresses = 16
net.ipv6.conf.br1.max_desync_factor = 600
net.ipv6.conf.br1.mc_forwarding = 0
net.ipv6.conf.br1.mtu = 1500
net.ipv6.conf.br1.ndisc_notify = 0
net.ipv6.conf.br1.proxy_ndp = 0
net.ipv6.conf.br1.regen_max_retry = 3
net.ipv6.conf.br1.router_probe_interval = 60
net.ipv6.conf.br1.router_solicitation_delay = 1
net.ipv6.conf.br1.router_solicitation_interval = 4
net.ipv6.conf.br1.router_solicitations = 3
net.ipv6.conf.br1.temp_prefered_lft = 86400
net.ipv6.conf.br1.temp_valid_lft = 604800
net.ipv6.conf.br1.use_tempaddr = 0
net.ipv6.conf.br2.accept_dad = 1
net.ipv6.conf.br2.accept_ra = 1
net.ipv6.conf.br2.accept_ra_defrtr = 1
net.ipv6.conf.br2.accept_ra_pinfo = 1
net.ipv6.conf.br2.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.br2.accept_ra_rtr_pref = 1
net.ipv6.conf.br2.accept_redirects = 1
net.ipv6.conf.br2.accept_source_route = 0
net.ipv6.conf.br2.autoconf = 1
net.ipv6.conf.br2.dad_transmits = 1
net.ipv6.conf.br2.disable_ipv6 = 0
net.ipv6.conf.br2.force_mld_version = 0
net.ipv6.conf.br2.force_tllao = 0
net.ipv6.conf.br2.forwarding = 0
net.ipv6.conf.br2.hop_limit = 64
net.ipv6.conf.br2.max_addresses = 16
net.ipv6.conf.br2.max_desync_factor = 600
net.ipv6.conf.br2.mc_forwarding = 0
net.ipv6.conf.br2.mtu = 1500
net.ipv6.conf.br2.ndisc_notify = 0
net.ipv6.conf.br2.proxy_ndp = 0
net.ipv6.conf.br2.regen_max_retry = 3
net.ipv6.conf.br2.router_probe_interval = 60
net.ipv6.conf.br2.router_solicitation_delay = 1
net.ipv6.conf.br2.router_solicitation_interval = 4
net.ipv6.conf.br2.router_solicitations = 3
net.ipv6.conf.br2.temp_prefered_lft = 86400
net.ipv6.conf.br2.temp_valid_lft = 604800
net.ipv6.conf.br2.use_tempaddr = 0
net.ipv6.conf.default.accept_dad = 1
net.ipv6.conf.default.accept_ra = 1
net.ipv6.conf.default.accept_ra_defrtr = 1
net.ipv6.conf.default.accept_ra_pinfo = 1
net.ipv6.conf.default.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.default.accept_ra_rtr_pref = 1
net.ipv6.conf.default.accept_redirects = 1
net.ipv6.conf.default.accept_source_route = 0
net.ipv6.conf.default.autoconf = 1
net.ipv6.conf.default.dad_transmits = 1
net.ipv6.conf.default.disable_ipv6 = 0
net.ipv6.conf.default.force_mld_version = 0
net.ipv6.conf.default.force_tllao = 0
net.ipv6.conf.default.forwarding = 0
net.ipv6.conf.default.hop_limit = 64
net.ipv6.conf.default.max_addresses = 16
net.ipv6.conf.default.max_desync_factor = 600
net.ipv6.conf.default.mc_forwarding = 0
net.ipv6.conf.default.mtu = 1280
net.ipv6.conf.default.ndisc_notify = 0
net.ipv6.conf.default.proxy_ndp = 0
net.ipv6.conf.default.regen_max_retry = 3
net.ipv6.conf.default.router_probe_interval = 60
net.ipv6.conf.default.router_solicitation_delay = 1
net.ipv6.conf.default.router_solicitation_interval = 4
net.ipv6.conf.default.router_solicitations = 3
net.ipv6.conf.default.temp_prefered_lft = 86400
net.ipv6.conf.default.temp_valid_lft = 604800
net.ipv6.conf.default.use_tempaddr = 0
net.ipv6.conf.eth0.accept_dad = 1
net.ipv6.conf.eth0.accept_ra = 1
net.ipv6.conf.eth0.accept_ra_defrtr = 1
net.ipv6.conf.eth0.accept_ra_pinfo = 1
net.ipv6.conf.eth0.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.eth0.accept_ra_rtr_pref = 1
net.ipv6.conf.eth0.accept_redirects = 1
net.ipv6.conf.eth0.accept_source_route = 0
net.ipv6.conf.eth0.autoconf = 1
net.ipv6.conf.eth0.dad_transmits = 1
net.ipv6.conf.eth0.disable_ipv6 = 0
net.ipv6.conf.eth0.force_mld_version = 0
net.ipv6.conf.eth0.force_tllao = 0
net.ipv6.conf.eth0.forwarding = 0
net.ipv6.conf.eth0.hop_limit = 64
net.ipv6.conf.eth0.max_addresses = 16
net.ipv6.conf.eth0.max_desync_factor = 600
net.ipv6.conf.eth0.mc_forwarding = 0
net.ipv6.conf.eth0.mtu = 1500
net.ipv6.conf.eth0.ndisc_notify = 0
net.ipv6.conf.eth0.proxy_ndp = 0
net.ipv6.conf.eth0.regen_max_retry = 3
net.ipv6.conf.eth0.router_probe_interval = 60
net.ipv6.conf.eth0.router_solicitation_delay = 1
net.ipv6.conf.eth0.router_solicitation_interval = 4
net.ipv6.conf.eth0.router_solicitations = 3
net.ipv6.conf.eth0.temp_prefered_lft = 86400
net.ipv6.conf.eth0.temp_valid_lft = 604800
net.ipv6.conf.eth0.use_tempaddr = 0
net.ipv6.conf.eth1.accept_dad = 1
net.ipv6.conf.eth1.accept_ra = 1
net.ipv6.conf.eth1.accept_ra_defrtr = 1
net.ipv6.conf.eth1.accept_ra_pinfo = 1
net.ipv6.conf.eth1.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.eth1.accept_ra_rtr_pref = 1
net.ipv6.conf.eth1.accept_redirects = 1
net.ipv6.conf.eth1.accept_source_route = 0
net.ipv6.conf.eth1.autoconf = 1
net.ipv6.conf.eth1.dad_transmits = 1
net.ipv6.conf.eth1.disable_ipv6 = 0
net.ipv6.conf.eth1.force_mld_version = 0
net.ipv6.conf.eth1.force_tllao = 0
net.ipv6.conf.eth1.forwarding = 0
net.ipv6.conf.eth1.hop_limit = 64
net.ipv6.conf.eth1.max_addresses = 16
net.ipv6.conf.eth1.max_desync_factor = 600
net.ipv6.conf.eth1.mc_forwarding = 0
net.ipv6.conf.eth1.mtu = 1500
net.ipv6.conf.eth1.ndisc_notify = 0
net.ipv6.conf.eth1.proxy_ndp = 0
net.ipv6.conf.eth1.regen_max_retry = 3
net.ipv6.conf.eth1.router_probe_interval = 60
net.ipv6.conf.eth1.router_solicitation_delay = 1
net.ipv6.conf.eth1.router_solicitation_interval = 4
net.ipv6.conf.eth1.router_solicitations = 3
net.ipv6.conf.eth1.temp_prefered_lft = 86400
net.ipv6.conf.eth1.temp_valid_lft = 604800
net.ipv6.conf.eth1.use_tempaddr = 0
net.ipv6.conf.eth1.2.accept_dad = 1
net.ipv6.conf.eth1.2.accept_ra = 1
net.ipv6.conf.eth1.2.accept_ra_defrtr = 1
net.ipv6.conf.eth1.2.accept_ra_pinfo = 1
net.ipv6.conf.eth1.2.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.eth1.2.accept_ra_rtr_pref = 1
net.ipv6.conf.eth1.2.accept_redirects = 1
net.ipv6.conf.eth1.2.accept_source_route = 0
net.ipv6.conf.eth1.2.autoconf = 1
net.ipv6.conf.eth1.2.dad_transmits = 1
net.ipv6.conf.eth1.2.disable_ipv6 = 0
net.ipv6.conf.eth1.2.force_mld_version = 0
net.ipv6.conf.eth1.2.force_tllao = 0
net.ipv6.conf.eth1.2.forwarding = 0
net.ipv6.conf.eth1.2.hop_limit = 64
net.ipv6.conf.eth1.2.max_addresses = 16
net.ipv6.conf.eth1.2.max_desync_factor = 600
net.ipv6.conf.eth1.2.mc_forwarding = 0
net.ipv6.conf.eth1.2.mtu = 1500
net.ipv6.conf.eth1.2.ndisc_notify = 0
net.ipv6.conf.eth1.2.proxy_ndp = 0
net.ipv6.conf.eth1.2.regen_max_retry = 3
net.ipv6.conf.eth1.2.router_probe_interval = 60
net.ipv6.conf.eth1.2.router_solicitation_delay = 1
net.ipv6.conf.eth1.2.router_solicitation_interval = 4
net.ipv6.conf.eth1.2.router_solicitations = 3
net.ipv6.conf.eth1.2.temp_prefered_lft = 86400
net.ipv6.conf.eth1.2.temp_valid_lft = 604800
net.ipv6.conf.eth1.2.use_tempaddr = 0
net.ipv6.conf.eth1.3.accept_dad = 1
net.ipv6.conf.eth1.3.accept_ra = 1
net.ipv6.conf.eth1.3.accept_ra_defrtr = 1
net.ipv6.conf.eth1.3.accept_ra_pinfo = 1
net.ipv6.conf.eth1.3.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.eth1.3.accept_ra_rtr_pref = 1
net.ipv6.conf.eth1.3.accept_redirects = 1
net.ipv6.conf.eth1.3.accept_source_route = 0
net.ipv6.conf.eth1.3.autoconf = 1
net.ipv6.conf.eth1.3.dad_transmits = 1
net.ipv6.conf.eth1.3.disable_ipv6 = 0
net.ipv6.conf.eth1.3.force_mld_version = 0
net.ipv6.conf.eth1.3.force_tllao = 0
net.ipv6.conf.eth1.3.forwarding = 0
net.ipv6.conf.eth1.3.hop_limit = 64
net.ipv6.conf.eth1.3.max_addresses = 16
net.ipv6.conf.eth1.3.max_desync_factor = 600
net.ipv6.conf.eth1.3.mc_forwarding = 0
net.ipv6.conf.eth1.3.mtu = 1500
net.ipv6.conf.eth1.3.ndisc_notify = 0
net.ipv6.conf.eth1.3.proxy_ndp = 0
net.ipv6.conf.eth1.3.regen_max_retry = 3
net.ipv6.conf.eth1.3.router_probe_interval = 60
net.ipv6.conf.eth1.3.router_solicitation_delay = 1
net.ipv6.conf.eth1.3.router_solicitation_interval = 4
net.ipv6.conf.eth1.3.router_solicitations = 3
net.ipv6.conf.eth1.3.temp_prefered_lft = 86400
net.ipv6.conf.eth1.3.temp_valid_lft = 604800
net.ipv6.conf.eth1.3.use_tempaddr = 0
net.ipv6.conf.eth1.4.accept_dad = 1
net.ipv6.conf.eth1.4.accept_ra = 1
net.ipv6.conf.eth1.4.accept_ra_defrtr = 1
net.ipv6.conf.eth1.4.accept_ra_pinfo = 1
net.ipv6.conf.eth1.4.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.eth1.4.accept_ra_rtr_pref = 1
net.ipv6.conf.eth1.4.accept_redirects = 1
net.ipv6.conf.eth1.4.accept_source_route = 0
net.ipv6.conf.eth1.4.autoconf = 1
net.ipv6.conf.eth1.4.dad_transmits = 1
net.ipv6.conf.eth1.4.disable_ipv6 = 0
net.ipv6.conf.eth1.4.force_mld_version = 0
net.ipv6.conf.eth1.4.force_tllao = 0
net.ipv6.conf.eth1.4.forwarding = 0
net.ipv6.conf.eth1.4.hop_limit = 64
net.ipv6.conf.eth1.4.max_addresses = 16
net.ipv6.conf.eth1.4.max_desync_factor = 600
net.ipv6.conf.eth1.4.mc_forwarding = 0
net.ipv6.conf.eth1.4.mtu = 1500
net.ipv6.conf.eth1.4.ndisc_notify = 0
net.ipv6.conf.eth1.4.proxy_ndp = 0
net.ipv6.conf.eth1.4.regen_max_retry = 3
net.ipv6.conf.eth1.4.router_probe_interval = 60
net.ipv6.conf.eth1.4.router_solicitation_delay = 1
net.ipv6.conf.eth1.4.router_solicitation_interval = 4
net.ipv6.conf.eth1.4.router_solicitations = 3
net.ipv6.conf.eth1.4.temp_prefered_lft = 86400
net.ipv6.conf.eth1.4.temp_valid_lft = 604800
net.ipv6.conf.eth1.4.use_tempaddr = 0
net.ipv6.conf.lo.accept_dad = -1
net.ipv6.conf.lo.accept_ra = 1
net.ipv6.conf.lo.accept_ra_defrtr = 1
net.ipv6.conf.lo.accept_ra_pinfo = 1
net.ipv6.conf.lo.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.lo.accept_ra_rtr_pref = 1
net.ipv6.conf.lo.accept_redirects = 1
net.ipv6.conf.lo.accept_source_route = 0
net.ipv6.conf.lo.autoconf = 1
net.ipv6.conf.lo.dad_transmits = 1
net.ipv6.conf.lo.disable_ipv6 = 0
net.ipv6.conf.lo.force_mld_version = 0
net.ipv6.conf.lo.force_tllao = 0
net.ipv6.conf.lo.forwarding = 0
net.ipv6.conf.lo.hop_limit = 64
net.ipv6.conf.lo.max_addresses = 16
net.ipv6.conf.lo.max_desync_factor = 600
net.ipv6.conf.lo.mc_forwarding = 0
net.ipv6.conf.lo.mtu = 65536
net.ipv6.conf.lo.ndisc_notify = 0
net.ipv6.conf.lo.proxy_ndp = 0
net.ipv6.conf.lo.regen_max_retry = 3
net.ipv6.conf.lo.router_probe_interval = 60
net.ipv6.conf.lo.router_solicitation_delay = 1
net.ipv6.conf.lo.router_solicitation_interval = 4
net.ipv6.conf.lo.router_solicitations = 3
net.ipv6.conf.lo.temp_prefered_lft = 86400
net.ipv6.conf.lo.temp_valid_lft = 604800
net.ipv6.conf.lo.use_tempaddr = -1
net.ipv6.conf.wlan0.accept_dad = 1
net.ipv6.conf.wlan0.accept_ra = 1
net.ipv6.conf.wlan0.accept_ra_defrtr = 1
net.ipv6.conf.wlan0.accept_ra_pinfo = 1
net.ipv6.conf.wlan0.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.wlan0.accept_ra_rtr_pref = 1
net.ipv6.conf.wlan0.accept_redirects = 1
net.ipv6.conf.wlan0.accept_source_route = 0
net.ipv6.conf.wlan0.autoconf = 1
net.ipv6.conf.wlan0.dad_transmits = 1
net.ipv6.conf.wlan0.disable_ipv6 = 0
net.ipv6.conf.wlan0.force_mld_version = 0
net.ipv6.conf.wlan0.force_tllao = 0
net.ipv6.conf.wlan0.forwarding = 0
net.ipv6.conf.wlan0.hop_limit = 64
net.ipv6.conf.wlan0.max_addresses = 16
net.ipv6.conf.wlan0.max_desync_factor = 600
net.ipv6.conf.wlan0.mc_forwarding = 0
net.ipv6.conf.wlan0.mtu = 1500
net.ipv6.conf.wlan0.ndisc_notify = 0
net.ipv6.conf.wlan0.proxy_ndp = 0
net.ipv6.conf.wlan0.regen_max_retry = 3
net.ipv6.conf.wlan0.router_probe_interval = 60
net.ipv6.conf.wlan0.router_solicitation_delay = 1
net.ipv6.conf.wlan0.router_solicitation_interval = 4
net.ipv6.conf.wlan0.router_solicitations = 3
net.ipv6.conf.wlan0.temp_prefered_lft = 86400
net.ipv6.conf.wlan0.temp_valid_lft = 604800
net.ipv6.conf.wlan0.use_tempaddr = 0
net.ipv6.conf.wlan0_0.accept_dad = 1
net.ipv6.conf.wlan0_0.accept_ra = 1
net.ipv6.conf.wlan0_0.accept_ra_defrtr = 1
net.ipv6.conf.wlan0_0.accept_ra_pinfo = 1
net.ipv6.conf.wlan0_0.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.wlan0_0.accept_ra_rtr_pref = 1
net.ipv6.conf.wlan0_0.accept_redirects = 1
net.ipv6.conf.wlan0_0.accept_source_route = 0
net.ipv6.conf.wlan0_0.autoconf = 1
net.ipv6.conf.wlan0_0.dad_transmits = 1
net.ipv6.conf.wlan0_0.disable_ipv6 = 0
net.ipv6.conf.wlan0_0.force_mld_version = 0
net.ipv6.conf.wlan0_0.force_tllao = 0
net.ipv6.conf.wlan0_0.forwarding = 0
net.ipv6.conf.wlan0_0.hop_limit = 64
net.ipv6.conf.wlan0_0.max_addresses = 16
net.ipv6.conf.wlan0_0.max_desync_factor = 600
net.ipv6.conf.wlan0_0.mc_forwarding = 0
net.ipv6.conf.wlan0_0.mtu = 1500
net.ipv6.conf.wlan0_0.ndisc_notify = 0
net.ipv6.conf.wlan0_0.proxy_ndp = 0
net.ipv6.conf.wlan0_0.regen_max_retry = 3
net.ipv6.conf.wlan0_0.router_probe_interval = 60
net.ipv6.conf.wlan0_0.router_solicitation_delay = 1
net.ipv6.conf.wlan0_0.router_solicitation_interval = 4
net.ipv6.conf.wlan0_0.router_solicitations = 3
net.ipv6.conf.wlan0_0.temp_prefered_lft = 86400
net.ipv6.conf.wlan0_0.temp_valid_lft = 604800
net.ipv6.conf.wlan0_0.use_tempaddr = 0
net.ipv6.icmp.ratelimit = 1000
net.ipv6.ip6frag_high_thresh = 4194304
net.ipv6.ip6frag_low_thresh = 3145728
net.ipv6.ip6frag_secret_interval = 600
net.ipv6.ip6frag_time = 60
net.ipv6.mld_max_msf = 64
net.ipv6.neigh.br0.anycast_delay = 99
net.ipv6.neigh.br0.app_solicit = 0
net.ipv6.neigh.br0.base_reachable_time = 30
net.ipv6.neigh.br0.base_reachable_time_ms = 30000
net.ipv6.neigh.br0.delay_first_probe_time = 5
net.ipv6.neigh.br0.gc_stale_time = 60
net.ipv6.neigh.br0.locktime = 0
net.ipv6.neigh.br0.mcast_solicit = 3
net.ipv6.neigh.br0.proxy_delay = 79
net.ipv6.neigh.br0.proxy_qlen = 64
net.ipv6.neigh.br0.retrans_time = 300
net.ipv6.neigh.br0.retrans_time_ms = 1000
net.ipv6.neigh.br0.ucast_solicit = 3
net.ipv6.neigh.br0.unres_qlen = 33
net.ipv6.neigh.br0.unres_qlen_bytes = 65536
net.ipv6.neigh.br1.anycast_delay = 99
net.ipv6.neigh.br1.app_solicit = 0
net.ipv6.neigh.br1.base_reachable_time = 30
net.ipv6.neigh.br1.base_reachable_time_ms = 30000
net.ipv6.neigh.br1.delay_first_probe_time = 5
net.ipv6.neigh.br1.gc_stale_time = 60
net.ipv6.neigh.br1.locktime = 0
net.ipv6.neigh.br1.mcast_solicit = 3
net.ipv6.neigh.br1.proxy_delay = 79
net.ipv6.neigh.br1.proxy_qlen = 64
net.ipv6.neigh.br1.retrans_time = 300
net.ipv6.neigh.br1.retrans_time_ms = 1000
net.ipv6.neigh.br1.ucast_solicit = 3
net.ipv6.neigh.br1.unres_qlen = 33
net.ipv6.neigh.br1.unres_qlen_bytes = 65536
net.ipv6.neigh.br2.anycast_delay = 99
net.ipv6.neigh.br2.app_solicit = 0
net.ipv6.neigh.br2.base_reachable_time = 30
net.ipv6.neigh.br2.base_reachable_time_ms = 30000
net.ipv6.neigh.br2.delay_first_probe_time = 5
net.ipv6.neigh.br2.gc_stale_time = 60
net.ipv6.neigh.br2.locktime = 0
net.ipv6.neigh.br2.mcast_solicit = 3
net.ipv6.neigh.br2.proxy_delay = 79
net.ipv6.neigh.br2.proxy_qlen = 64
net.ipv6.neigh.br2.retrans_time = 300
net.ipv6.neigh.br2.retrans_time_ms = 1000
net.ipv6.neigh.br2.ucast_solicit = 3
net.ipv6.neigh.br2.unres_qlen = 33
net.ipv6.neigh.br2.unres_qlen_bytes = 65536
net.ipv6.neigh.default.anycast_delay = 99
net.ipv6.neigh.default.app_solicit = 0
net.ipv6.neigh.default.base_reachable_time = 30
net.ipv6.neigh.default.base_reachable_time_ms = 30000
net.ipv6.neigh.default.delay_first_probe_time = 5
net.ipv6.neigh.default.gc_interval = 30
net.ipv6.neigh.default.gc_stale_time = 60
net.ipv6.neigh.default.gc_thresh1 = 128
net.ipv6.neigh.default.gc_thresh2 = 512
net.ipv6.neigh.default.gc_thresh3 = 1024
net.ipv6.neigh.default.locktime = 0
net.ipv6.neigh.default.mcast_solicit = 3
net.ipv6.neigh.default.proxy_delay = 79
net.ipv6.neigh.default.proxy_qlen = 64
net.ipv6.neigh.default.retrans_time = 300
net.ipv6.neigh.default.retrans_time_ms = 1000
net.ipv6.neigh.default.ucast_solicit = 3
net.ipv6.neigh.default.unres_qlen = 33
net.ipv6.neigh.default.unres_qlen_bytes = 65536
net.ipv6.neigh.eth0.anycast_delay = 99
net.ipv6.neigh.eth0.app_solicit = 0
net.ipv6.neigh.eth0.base_reachable_time = 30
net.ipv6.neigh.eth0.base_reachable_time_ms = 30000
net.ipv6.neigh.eth0.delay_first_probe_time = 5
net.ipv6.neigh.eth0.gc_stale_time = 60
net.ipv6.neigh.eth0.locktime = 0
net.ipv6.neigh.eth0.mcast_solicit = 3
net.ipv6.neigh.eth0.proxy_delay = 79
net.ipv6.neigh.eth0.proxy_qlen = 64
net.ipv6.neigh.eth0.retrans_time = 300
net.ipv6.neigh.eth0.retrans_time_ms = 1000
net.ipv6.neigh.eth0.ucast_solicit = 3
net.ipv6.neigh.eth0.unres_qlen = 33
net.ipv6.neigh.eth0.unres_qlen_bytes = 65536
net.ipv6.neigh.eth1.anycast_delay = 99
net.ipv6.neigh.eth1.app_solicit = 0
net.ipv6.neigh.eth1.base_reachable_time = 30
net.ipv6.neigh.eth1.base_reachable_time_ms = 30000
net.ipv6.neigh.eth1.delay_first_probe_time = 5
net.ipv6.neigh.eth1.gc_stale_time = 60
net.ipv6.neigh.eth1.locktime = 0
net.ipv6.neigh.eth1.mcast_solicit = 3
net.ipv6.neigh.eth1.proxy_delay = 79
net.ipv6.neigh.eth1.proxy_qlen = 64
net.ipv6.neigh.eth1.retrans_time = 300
net.ipv6.neigh.eth1.retrans_time_ms = 1000
net.ipv6.neigh.eth1.ucast_solicit = 3
net.ipv6.neigh.eth1.unres_qlen = 33
net.ipv6.neigh.eth1.unres_qlen_bytes = 65536
net.ipv6.neigh.eth1.2.anycast_delay = 99
net.ipv6.neigh.eth1.2.app_solicit = 0
net.ipv6.neigh.eth1.2.base_reachable_time = 30
net.ipv6.neigh.eth1.2.base_reachable_time_ms = 30000
net.ipv6.neigh.eth1.2.delay_first_probe_time = 5
net.ipv6.neigh.eth1.2.gc_stale_time = 60
net.ipv6.neigh.eth1.2.locktime = 0
net.ipv6.neigh.eth1.2.mcast_solicit = 3
net.ipv6.neigh.eth1.2.proxy_delay = 79
net.ipv6.neigh.eth1.2.proxy_qlen = 64
net.ipv6.neigh.eth1.2.retrans_time = 300
net.ipv6.neigh.eth1.2.retrans_time_ms = 1000
net.ipv6.neigh.eth1.2.ucast_solicit = 3
net.ipv6.neigh.eth1.2.unres_qlen = 33
net.ipv6.neigh.eth1.2.unres_qlen_bytes = 65536
net.ipv6.neigh.eth1.3.anycast_delay = 99
net.ipv6.neigh.eth1.3.app_solicit = 0
net.ipv6.neigh.eth1.3.base_reachable_time = 30
net.ipv6.neigh.eth1.3.base_reachable_time_ms = 30000
net.ipv6.neigh.eth1.3.delay_first_probe_time = 5
net.ipv6.neigh.eth1.3.gc_stale_time = 60
net.ipv6.neigh.eth1.3.locktime = 0
net.ipv6.neigh.eth1.3.mcast_solicit = 3
net.ipv6.neigh.eth1.3.proxy_delay = 79
net.ipv6.neigh.eth1.3.proxy_qlen = 64
net.ipv6.neigh.eth1.3.retrans_time = 300
net.ipv6.neigh.eth1.3.retrans_time_ms = 1000
net.ipv6.neigh.eth1.3.ucast_solicit = 3
net.ipv6.neigh.eth1.3.unres_qlen = 33
net.ipv6.neigh.eth1.3.unres_qlen_bytes = 65536
net.ipv6.neigh.eth1.4.anycast_delay = 99
net.ipv6.neigh.eth1.4.app_solicit = 0
net.ipv6.neigh.eth1.4.base_reachable_time = 30
net.ipv6.neigh.eth1.4.base_reachable_time_ms = 30000
net.ipv6.neigh.eth1.4.delay_first_probe_time = 5
net.ipv6.neigh.eth1.4.gc_stale_time = 60
net.ipv6.neigh.eth1.4.locktime = 0
net.ipv6.neigh.eth1.4.mcast_solicit = 3
net.ipv6.neigh.eth1.4.proxy_delay = 79
net.ipv6.neigh.eth1.4.proxy_qlen = 64
net.ipv6.neigh.eth1.4.retrans_time = 300
net.ipv6.neigh.eth1.4.retrans_time_ms = 1000
net.ipv6.neigh.eth1.4.ucast_solicit = 3
net.ipv6.neigh.eth1.4.unres_qlen = 33
net.ipv6.neigh.eth1.4.unres_qlen_bytes = 65536
net.ipv6.neigh.lo.anycast_delay = 99
net.ipv6.neigh.lo.app_solicit = 0
net.ipv6.neigh.lo.base_reachable_time = 30
net.ipv6.neigh.lo.base_reachable_time_ms = 30000
net.ipv6.neigh.lo.delay_first_probe_time = 5
net.ipv6.neigh.lo.gc_stale_time = 60
net.ipv6.neigh.lo.locktime = 0
net.ipv6.neigh.lo.mcast_solicit = 3
net.ipv6.neigh.lo.proxy_delay = 79
net.ipv6.neigh.lo.proxy_qlen = 64
net.ipv6.neigh.lo.retrans_time = 300
net.ipv6.neigh.lo.retrans_time_ms = 1000
net.ipv6.neigh.lo.ucast_solicit = 3
net.ipv6.neigh.lo.unres_qlen = 33
net.ipv6.neigh.lo.unres_qlen_bytes = 65536
net.ipv6.neigh.wlan0.anycast_delay = 99
net.ipv6.neigh.wlan0.app_solicit = 0
net.ipv6.neigh.wlan0.base_reachable_time = 30
net.ipv6.neigh.wlan0.base_reachable_time_ms = 30000
net.ipv6.neigh.wlan0.delay_first_probe_time = 5
net.ipv6.neigh.wlan0.gc_stale_time = 60
net.ipv6.neigh.wlan0.locktime = 0
net.ipv6.neigh.wlan0.mcast_solicit = 3
net.ipv6.neigh.wlan0.proxy_delay = 79
net.ipv6.neigh.wlan0.proxy_qlen = 64
net.ipv6.neigh.wlan0.retrans_time = 300
net.ipv6.neigh.wlan0.retrans_time_ms = 1000
net.ipv6.neigh.wlan0.ucast_solicit = 3
net.ipv6.neigh.wlan0.unres_qlen = 33
net.ipv6.neigh.wlan0.unres_qlen_bytes = 65536
net.ipv6.neigh.wlan0_0.anycast_delay = 99
net.ipv6.neigh.wlan0_0.app_solicit = 0
net.ipv6.neigh.wlan0_0.base_reachable_time = 30
net.ipv6.neigh.wlan0_0.base_reachable_time_ms = 30000
net.ipv6.neigh.wlan0_0.delay_first_probe_time = 5
net.ipv6.neigh.wlan0_0.gc_stale_time = 60
net.ipv6.neigh.wlan0_0.locktime = 0
net.ipv6.neigh.wlan0_0.mcast_solicit = 3
net.ipv6.neigh.wlan0_0.proxy_delay = 79
net.ipv6.neigh.wlan0_0.proxy_qlen = 64
net.ipv6.neigh.wlan0_0.retrans_time = 300
net.ipv6.neigh.wlan0_0.retrans_time_ms = 1000
net.ipv6.neigh.wlan0_0.ucast_solicit = 3
net.ipv6.neigh.wlan0_0.unres_qlen = 33
net.ipv6.neigh.wlan0_0.unres_qlen_bytes = 65536
sysctl: error reading key 'net.ipv6.route.flush': Permission denied
net.ipv6.route.gc_elasticity = 9
net.ipv6.route.gc_interval = 30
net.ipv6.route.gc_min_interval = 0
net.ipv6.route.gc_min_interval_ms = 500
net.ipv6.route.gc_thresh = 1024
net.ipv6.route.gc_timeout = 60
net.ipv6.route.max_size = 4096
net.ipv6.route.min_adv_mss = 1220
net.ipv6.route.mtu_expires = 600
net.ipv6.xfrm6_gc_thresh = 1024
net.netfilter.nf_conntrack_acct = 0
net.netfilter.nf_conntrack_buckets = 16384
net.netfilter.nf_conntrack_checksum = 1
net.netfilter.nf_conntrack_count = 23
net.netfilter.nf_conntrack_events = 1
net.netfilter.nf_conntrack_events_retry_timeout = 15
net.netfilter.nf_conntrack_expect_max = 256
net.netfilter.nf_conntrack_generic_timeout = 600
net.netfilter.nf_conntrack_helper = 1
net.netfilter.nf_conntrack_icmp_timeout = 30
net.netfilter.nf_conntrack_log_invalid = 0
net.netfilter.nf_conntrack_max = 65536
net.netfilter.nf_conntrack_tcp_be_liberal = 0
net.netfilter.nf_conntrack_tcp_loose = 1
net.netfilter.nf_conntrack_tcp_max_retrans = 3
net.netfilter.nf_conntrack_tcp_timeout_close = 10
net.netfilter.nf_conntrack_tcp_timeout_close_wait = 60
net.netfilter.nf_conntrack_tcp_timeout_established = 432000
net.netfilter.nf_conntrack_tcp_timeout_fin_wait = 120
net.netfilter.nf_conntrack_tcp_timeout_last_ack = 30
net.netfilter.nf_conntrack_tcp_timeout_max_retrans = 300
net.netfilter.nf_conntrack_tcp_timeout_syn_recv = 60
net.netfilter.nf_conntrack_tcp_timeout_syn_sent = 120
net.netfilter.nf_conntrack_tcp_timeout_time_wait = 120
net.netfilter.nf_conntrack_tcp_timeout_unacknowledged = 300
net.netfilter.nf_conntrack_timestamp = 0
net.netfilter.nf_conntrack_udp_timeout = 30
net.netfilter.nf_conntrack_udp_timeout_stream = 180
net.netfilter.nf_log.0 = NONE
net.netfilter.nf_log.1 = NONE
net.netfilter.nf_log.10 = ip6t_LOG
net.netfilter.nf_log.11 = NONE
net.netfilter.nf_log.12 = NONE
net.netfilter.nf_log.2 = ipt_LOG
net.netfilter.nf_log.3 = NONE
net.netfilter.nf_log.4 = NONE
net.netfilter.nf_log.5 = NONE
net.netfilter.nf_log.6 = NONE
net.netfilter.nf_log.7 = NONE
net.netfilter.nf_log.8 = NONE
net.netfilter.nf_log.9 = NONE
net.nf_conntrack_max = 65536
net.unix.max_dgram_qlen = 10
vm.admin_reserve_kbytes = 8192
vm.block_dump = 0
sysctl: error reading key 'vm.compact_memory': Permission denied
vm.dirty_background_bytes = 0
vm.dirty_background_ratio = 10
vm.dirty_bytes = 0
vm.dirty_expire_centisecs = 3000
vm.dirty_ratio = 20
vm.dirty_writeback_centisecs = 500
vm.drop_caches = 0
vm.extfrag_threshold = 500
vm.heap_stack_gap = 65536
vm.highmem_is_dirtyable = 0
vm.laptop_mode = 0
vm.legacy_va_layout = 0
vm.lowmem_reserve_ratio = 256   32      32
vm.max_map_count = 65530
vm.min_free_kbytes = 43948
vm.mmap_min_addr = 4096
vm.nr_pdflush_threads = 0
vm.oom_dump_tasks = 1
vm.oom_kill_allocating_task = 0
vm.overcommit_memory = 0
vm.overcommit_ratio = 50
vm.page-cluster = 3
vm.panic_on_oom = 0
vm.percpu_pagelist_fraction = 0
vm.scan_unevictable_pages = 0
vm.stat_interval = 1
vm.swappiness = 60
vm.user_reserve_kbytes = 47997
vm.vdso_enabled = 1
vm.vfs_cache_pressure = 100

Any assistance would be greatly appreciated, will provide more information (such as tcpdumps) as it is requested. It's already taken me a few days to figure this one out...

Thanks in advance.
-- Isan

Wed, 2013-11-20 00:00
shafire
  • shafire's picture
  • Offline
  • Last seen: 2 years 7 months ago
  • Joined: 2013-08-06

Which Alpine Linux version do you use? It looks like 2.4 or older.

Wed, 2013-11-20 05:32 (Reply to #2)
isangaft220
  • isangaft220's picture
  • Offline
  • Last seen: 4 years 4 months ago
  • Joined: 2013-11-19

'cat /etc/alpine-release' reports:

2.7.0

It's a recent CD install and I used the latest version.

Log in or register to post comments