Don't blockquote pre blocks.
[wiki] / examples / proxy-arp.mdwn
index 70cb092..834e84c 100644 (file)
@@ -22,46 +22,46 @@ The network setup is as follows:
 
 ### Configuration of tinc at the office
 
->     host# cat /etc/tinc/vpn/tinc.conf
->     Name = office
->     #Optional:
->     #Mode = switch
->     
->     host# cat /etc/tinc/vpn/tinc-up
->     #!/bin/sh
->     
->     ifconfig $INTERFACE 192.168.1.2 netmask 255.255.255.255
->     route add 192.168.1.123 dev $INTERFACE
->     echo 1 >/proc/sys/net/ipv4/conf/eth0/proxy_arp
->     echo 1 >/proc/sys/net/ipv4/conf/$INTERFACE/proxy_arp
->     
->     host# ls /etc/tinc/vpn/hosts
->     office  roadwarrior  ...
->     
->     host# cat /etc/tinc/vpn/hosts/office
->     Address = 123.234.123.42
->     Subnet = 192.168.1.0/24
->     -----BEGIN RSA PUBLIC KEY-----
->     ...
->     -----END RSA PUBLIC KEY-----
->     
->     host# cat /etc/tinc/vpn/hosts/roadwarrior
->     Subnet = 192.168.1.123
->     -----BEGIN RSA PUBLIC KEY-----
->     ...
->     -----END RSA PUBLIC KEY-----
+       host# cat /etc/tinc/vpn/tinc.conf
+       Name = office
+       #Optional:
+       #Mode = switch
+       
+       host# cat /etc/tinc/vpn/tinc-up
+       #!/bin/sh
+       
+       ifconfig $INTERFACE 192.168.1.2 netmask 255.255.255.255
+       route add 192.168.1.123 dev $INTERFACE
+       echo 1 >/proc/sys/net/ipv4/conf/eth0/proxy_arp
+       echo 1 >/proc/sys/net/ipv4/conf/$INTERFACE/proxy_arp
+       
+       host# ls /etc/tinc/vpn/hosts
+       office  roadwarrior  ...
+       
+       host# cat /etc/tinc/vpn/hosts/office
+       Address = 123.234.123.42
+       Subnet = 192.168.1.0/24
+       -----BEGIN RSA PUBLIC KEY-----
+       ...
+       -----END RSA PUBLIC KEY-----
+       
+       host# cat /etc/tinc/vpn/hosts/roadwarrior
+       Subnet = 192.168.1.123
+       -----BEGIN RSA PUBLIC KEY-----
+       ...
+       -----END RSA PUBLIC KEY-----
 
 ### Configuration of tinc at the road warrior
 
->     host# cat /etc/tinc/vpn/tinc.conf
->     Name = roadwarrior
->     #Optional:
->     #Mode = switch
->     
->     host# cat /etc/tinc/vpn/tinc-up
->     #!/bin/sh
->     
->     ifconfig $INTERFACE 192.168.1.123 netmask 255.255.255.0
+       host# cat /etc/tinc/vpn/tinc.conf
+       Name = roadwarrior
+       #Optional:
+       #Mode = switch
+       
+       host# cat /etc/tinc/vpn/tinc-up
+       #!/bin/sh
+       
+       ifconfig $INTERFACE 192.168.1.123 netmask 255.255.255.0
 
 The host config files are, of course, identical to those on the office node.
 
@@ -72,7 +72,7 @@ to the roadwarrior's address hardcoded.  To have tinc automatically add the
 necessary routes, remove the `route add` command from the `tinc-up` script, and
 instead add this `subnet-up` script:
 
->     host# cat /etc/tinc/vpn/subnet-up
->     #!/bin/sh
->     [ "$NAME" = "$NODE" ] && exit 0
->     ip route replace $SUBNET dev $INTERFACE
+       host# cat /etc/tinc/vpn/subnet-up
+       #!/bin/sh
+       [ "$NAME" = "$NODE" ] && exit 0
+       ip route replace $SUBNET dev $INTERFACE