Advertisement
Guest User

Untitled

a guest
Jun 11th, 2010
887
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. # Linux NAT configuration file
  2. [host]
  3. # NAT gateway address
  4. ip = 172.16.151.2
  5. netmask = 255.255.255.0
  6. # or ip = 172.16.151.2/24
  7.  
  8. # enable configuration; disabled by default for security reasons
  9. #configport = 33445
  10.  
  11. # VMnet device if not specified on command line
  12. device = /dev/vmnet8
  13.  
  14. # Allow PORT/EPRT FTP commands (they need incoming TCP stream...)
  15. activeFTP = 1
  16.  
  17. # Allows the source to have any OUI. Turn this on if you change the OUI
  18. # in the MAC address of your virtual machines.
  19. allowAnyOUI = 1
  20.  
  21. [udp]
  22. # Timeout in seconds, 0 = no timeout, default = 60; real value might
  23. # be up to 100% longer
  24. timeout = 60
  25.  
  26. [incomingtcp]
  27. # Use these with care - anyone can enter into your VM through these...
  28.  
  29. # FTP (both active and passive FTP is always enabled)
  30. # ftp localhost 8887
  31. #8887 = 172.16.226.128:21
  32.  
  33. # WEB (make sure that if you are using named webhosting, names point to
  34. # your host, not to guest... And if you are forwarding port other
  35. # than 80 make sure that your server copes with mismatched port
  36. # number in Host: header)
  37. # lynx http://localhost:8888
  38. #8888 = 172.16.226.128:80
  39.  
  40. # <=========================================== MY COMMENTED ENTRIES
  41. # 8888 = 172.16.151.100:80
  42. # 8888 = 172.16.151.101:80
  43. # 8888 = 172.16.151.102:80
  44.  
  45. # SSH
  46. # ssh -p 8889 root@localhost
  47. #8889 = 172.16.226.128:22
  48. # <=========================================== MY COMMENTED ENTRIES
  49. # 2222 = 172.16.151.100:22
  50. # 2222 = 172.16.151.101:22
  51. # 2222 = 172.16.151.102:22
  52.  
  53.  
  54. [incomingudp]
  55. # UDP port forwarding example
  56. #6000 = 172.16.226.128:6001
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement