1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
;
; syntax is VERY rigid:
;
;interface <name> udp null <udp-portnumber-on-which-to-listen>
;interface <name> ip null <ip-protocol-id>
;interface <name> slip </dev/ttyname> <speed>
;interface <name> tunnel </dev/tundevicename> 0
;
; Open subnet connections to neighbor wormhole sites using IP
;
; 94 is the old one that will be phased out someday.
; 4 is the new one. Both interfaces are defined here
; so that the IPIP daemon can handle incoming packets
; to either one.
;
interface open ip null 94
interface new ip null 4
;
; SLIP link from the localhost
;
interface local slip /dev/ttypf 38400
;
|