router.mrt 853 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # filename: server.mrt
  2. # author: Thomas Reschka
  3. # routing table for router of tcp example "extserver"
  4. ifconfig:
  5. # interface 0 to client
  6. name: ppp0
  7. inet_addr: 172.0.0.100
  8. Mask: 255.255.255.0
  9. MTU: 1500
  10. POINTTOPOINT MULTICAST
  11. # interface 1 to server
  12. name: ppp1
  13. inet_addr: 172.0.1.100
  14. Mask: 255.255.255.0
  15. MTU: 1500
  16. POINTTOPOINT MULTICAST
  17. # interface 2 to external server (real network interface)
  18. name: ext0
  19. inet_addr: 192.168.1.100
  20. Mask: 255.255.255.0
  21. MTU: 1500
  22. POINTTOPOINT MULTICAST
  23. ifconfigend.
  24. route:
  25. #Destination Gateway Genmask Flags Metric Iface
  26. 172.0.0.0 * 255.255.255.0 H 0 ppp0
  27. 172.0.1.0 * 255.255.255.0 H 0 ppp1
  28. 0.0.0.0 * 0.0.0.0 G 0 ext0
  29. routeend.