From 7a41b38d972b127e5eea7b0f4fa93927a0f9e5e7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Elan=20Ruusam=C3=A4e?= Date: Tue, 8 Apr 2008 05:33:22 +0000 Subject: [PATCH] - update Changed files: VMware-server-dhcpd.conf -> 1.2 VMware-server-nat.conf -> 1.2 --- VMware-server-dhcpd.conf | 17 ++++++++++++----- VMware-server-nat.conf | 12 ++++++------ 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/VMware-server-dhcpd.conf b/VMware-server-dhcpd.conf index 914cbec..f9f008b 100644 --- a/VMware-server-dhcpd.conf +++ b/VMware-server-dhcpd.conf @@ -1,11 +1,18 @@ +# +# Configuration file for ISC 2.0b6pl1 vmnet-dhcpd operating on vmnet8. +# +# We set domain-name-servers to make some DHCP clients happy +# (dhclient as configued in SuSE, TurboLinux, etc.). +# We also supply a domain name to make pump (Red Hat 6.x) happy. +# allow unknown-clients; default-lease-time 1800; # 30 minutes max-lease-time 7200; # 2 hours -subnet 192.168.76.0 netmask 255.255.255.0 { - range 192.168.76.128 192.168.76.254; - option broadcast-address 192.168.76.255; - option domain-name-servers 192.168.76.2; +subnet 172.16.98.0 netmask 255.255.255.0 { + range 172.16.98.128 172.16.98.254; + option broadcast-address 172.16.98.255; + option domain-name-servers 172.16.98.2; option domain-name "localdomain"; - option routers 192.168.76.2; + option routers 172.16.98.2; } diff --git a/VMware-server-nat.conf b/VMware-server-nat.conf index 0e65c51..3ec84b7 100644 --- a/VMware-server-nat.conf +++ b/VMware-server-nat.conf @@ -1,9 +1,9 @@ # Linux NAT configuration file [host] # NAT gateway address -ip = 192.168.76.2 +ip = 172.16.98.2 netmask = 255.255.255.0 -# or ip = 192.168.76.2/24 +# or ip = 172.16.98.2/24 # enable configuration; disabled by default for security reasons #configport = 33445 @@ -28,19 +28,19 @@ timeout = 60 # FTP (both active and passive FTP is always enabled) # ftp localhost 8887 -#8887 = 192.168.76.128:21 +#8887 = 172.16.98.128:21 # WEB (make sure that if you are using named webhosting, names point to # your host, not to guest... And if you are forwarding port other # than 80 make sure that your server copes with mismatched port # number in Host: header) # lynx http://localhost:8888 -#8888 = 192.168.76.128:80 +#8888 = 172.16.98.128:80 # SSH # ssh -p 8889 root@localhost -#8889 = 192.168.76.128:22 +#8889 = 172.16.98.128:22 [incomingudp] # UDP port forwarding example -#6000 = 192.168.76.128:6001 +#6000 = 172.16.98.128:6001 -- 2.43.0