diff --git a/Richtfunk/bb-schanzenstern-kern2/etc/config/network b/Richtfunk/bb-schanzenstern-kern2/etc/config/network new file mode 100644 index 0000000..02b22f2 --- /dev/null +++ b/Richtfunk/bb-schanzenstern-kern2/etc/config/network @@ -0,0 +1,150 @@ + +config interface 'loopback' + option ifname 'lo' + option proto 'static' + option ipaddr '127.0.0.1' + option netmask '255.0.0.0' + +config globals 'globals' + option ula_prefix 'fd58:4461:58c9::/48' + +config interface 'wan6' + option proto 'dhcpv6' + option ifname 'br-wan' + option ip6table '1' + option sourcefilter '0' + option peerdns '0' + option reqprefix 'no' + +config interface 'wan' + option igmp_snooping '1' + option ifname 'eth1' + option multicast_querier '0' + option peerdns '0' + option auto '1' + option type 'bridge' + option proto 'dhcp' + option macaddr '72:f4:7d:2e:e0:48' + +config rule6 'wan6_lookup' + option mark '0x01/0x01' + option lookup '1' + +config route6 'wan6_unreachable' + option type 'unreachable' + option table '1' + option target '::/0' + option metric '65535' + option gateway '::' + option interface 'loopback' + +config interface 'mesh_wan' + option ifname 'br-wan' + option index '0' + option proto 'gluon_wired' + option disabled '1' + option transitive '1' + +config interface 'mesh_lan' + option igmp_snooping '0' + option ifname 'eth0' + option index '4' + option proto 'gluon_wired' + option disabled '1' + option transitive '1' + option macaddr '72:f4:7d:2e:e0:4c' + +config interface 'mesh_vpn' + option ifname 'mesh-vpn' + option transitive '1' + option mtu '1312' + option macaddr '72:f4:7d:2e:e0:4f' + option fixed_mtu '1' + option proto 'gluon_mesh' + +config interface 'client' + option igmp_snooping '1' + option type 'bridge' + option auto '1' + option ra_holdoff '30' + option multicast_querier '1' + option macaddr '00:0b:ab:a6:e4:f9' + list ifname 'eth0' + list ifname 'local-port' + list ifname 'bat0' + option ipv6 '1' + option keep_ra_dnslifetime '1' + option sourcefilter '0' + option peerdns '1' + option robustness '9' + option reqprefix 'no' + option query_interval '2000' + option query_response_interval '500' + option proto 'dhcpv6' + +config device 'local_node_dev' + option type 'veth' + option name 'local-node' + option peer_name 'local-port' + option macaddr '16:41:95:40:f7:dc' + option peer_macaddr '00:0b:ab:a6:e4:f9' + +config interface 'local_node' + option ifname 'local-node' + option ipaddr '10.112.96.1/19' + option ip6addr '2a03:2267:2::1/128' + option ip6deprecated '1' + option proto 'static' + +config interface 'gluon_bat0' + option proto 'gluon_bat0' + +config interface 'bat0' + option multicast_router '2' + option ifname 'bat0' + option auto '1' + option macaddr '00:0b:ab:a6:e4:f9' + option learning '1' + option proto 'none' + +config route6 'local_node_route6' + option target '2a03:2267:2::/64' + option gateway '::' + option interface 'client' + + + +config interface 'management_Schanzenstern' + option ifname 'eth0.222' + option proto 'static' + option ipaddr '192.168.121.1' + option netmask '255.255.255.0' + option enabled '1' + +config interface 'wartung_richtfunk' + option ifname 'eth0.5' + option proto 'static' + option ipaddr '192.168.112.2' + option netmask '255.255.255.0' + option enabled '1' + +config interface 'werkhof' + option ifname 'eth0.27' + option igmp_snooping '0' + option transitive '1' + option fixed_mtu '1' + option proto 'gluon_mesh' + option type 'bridge' + option macaddr 'de:ad:be:ef:90:e0' + option enabled '1' + +config interface 'cko' + option ifname 'eth0.38' + option igmp_snooping '0' + option transitive '1' + option fixed_mtu '1' + option proto 'gluon_mesh' + option type 'bridge' + option macaddr 'de:ad:be:ef:90:e1' + option enabled '1' + diff --git a/Richtfunk/bb-schanzenstern-kern2/etc/rc.local b/Richtfunk/bb-schanzenstern-kern2/etc/rc.local new file mode 100644 index 0000000..c07df33 --- /dev/null +++ b/Richtfunk/bb-schanzenstern-kern2/etc/rc.local @@ -0,0 +1,14 @@ +# Put your custom commands here that should be executed once +# the system init finished. By default this file does nothing. + +# No uci support for hop penalty after Gluon v2019.1.2 +INTERFACE="bat0" +PENALTY="5" +CURRENT=$(cat /sys/class/net/$INTERFACE/mesh/hop_penalty) +if [ "$PENALTY" != "$CURRENT" ]; then + echo $PENALTY > /sys/class/net/$INTERFACE/mesh/hop_penalty + uci set batman-adv.$INTERFACE.hop_penalty=$PENALTY + uci commit batman-adv +fi + +exit 0