From dc639d31498c8608de663cd314bc8799889abf39 Mon Sep 17 00:00:00 2001 From: crazynet24 Date: Mon, 20 Apr 2015 22:24:23 +0200 Subject: [PATCH] add gw08 --- gw08.pp | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 gw08.pp diff --git a/gw08.pp b/gw08.pp new file mode 100644 index 0000000..3d07153 --- /dev/null +++ b/gw08.pp @@ -0,0 +1,75 @@ +class { 'ffnord::params': + router_id => "10.112.1.8", # The id of this router, probably the ipv4 address + # of the mesh device of the providing community + icvpn_as => "49009", # The as of the providing community + wan_devices => ['eth0'], # A array of devices which should be in the wan zone + + conntrack_max => 131072, + conntrack_tcp_timeout => 3600, + conntrack_udp_timeout => 65, + + wmem_default => 1572864, + wmem_max => 1572864, + rmem_default => 1572864, + rmem_max => 1572864, + + max_backlog => 5000, +} + +ffnord::mesh { 'mesh_ffhh': + mesh_name => "Freifunk Hamburg", + mesh_code => "ffhh", + mesh_as => 49009, + mesh_mac => "de:ad:be:ef:88:88", + vpn_mac => "de:ad:be:ff:88:88", + mesh_ipv6 => "2a03:2267::b01/64", + mesh_ipv4 => "10.112.1.8/18", + mesh_mtu => "1406", + range_ipv4 => "10.112.0.0/16", + mesh_peerings => "/root/mesh_peerings.yaml", + + fastd_secret => "/root/fastd_secret.key", + fastd_port => 10000, + fastd_peers_git => 'git@git.hamburg.freifunk.net:fastdkeys', + + dhcp_ranges => [ '10.112.50.2 10.112.53.254' + ], + dns_servers => [ '10.112.1.1' + ], +} + +ffnord::dhcpd::static { + 'ffhh': static_git => 'https://github.com/freifunkhamburg/dhcp-static.git'; +} + + +class { + 'ffnord::uplink::ip': + nat_network => '185.66.193.62/32', + tunnel_network => '100.64.0.160/27', +} +ffnord::uplink::tunnel { + 'ffrlfra': + local_public_ip => "81.7.3.229", + remote_public_ip => "185.66.194.1", + local_ipv4 => "100.64.0.175/31", + remote_ip => "100.64.0.174/31", + tunnel_mtu => "1400", + remote_as => "201701"; + 'ffrldus': + local_public_ip => "81.7.3.229", + remote_public_ip => "185.66.193.1", + local_ipv4 => "100.64.0.177/31", + remote_ip => "100.64.0.176/31", + tunnel_mtu => "1400", + remote_as => "201701"; +} + +class { 'ffnord::alfred': master => false } + +class { 'ffnord::etckeeper': } + +class { + 'ffnord::monitor::zabbix': + zabbixserver => "80.252.106.17"; +}