LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 05-04-2009, 09:41 AM   #1
RavenLX
Member
 
Registered: Oct 2004
Posts: 98

Rep: Reputation: 15
Question Pings but doesn't go to web site.


I'm at a loss here. I have Ubuntu 8.04 server running in VMWare Server 2.0 running in Windows Vista Home Premium.

I have it set up for virtual hosts, and I have it set up in /etc/network/interfaces for Static IP (I'm not on a static IP service, but just want to use it inside my wireless home network with Linksys wireless router):

/etc/network/interfaces:

Code:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
address 192.168.100.135
netmask 255.255.255.0
network 192.168.100.0
broadcast 192.168.100.255
gateway 192.168.100.2
My /etc/hosts file looks something like this:

Code:
127.0.0.1       localhost
#127.0.1.1      myserver.localdomain      myserver
192.168.100.135 myserver.localdomain      myserver
Then some IPV6 stuffs.

My /etc/resolv.conf looks like this:
Code:
search localdomain
nameserver 192.168.100.2
Ok, I can ping it in a DOS window in Windows:

Code:
Pinging myserver.localdomain [208.69.36.132] with 32 bytes of data:
Reply from 208.69.36.132: bytes=32 time=38ms TTL=57
Reply from 208.69.36.132: bytes=32 time=151ms TTL=57
Reply from 208.69.36.132: bytes=32 time=35ms TTL=57
Reply from 208.69.36.132: bytes=32 time=37ms TTL=57

Ping statistics for 208.69.36.132:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 35ms, Maximum = 151ms, Average = 65ms
I have my router set up to use OpenDNS so it looks like it's using that in Windows. However, if I ping it from the Ubuntu Server I get this:

Code:
PING myserver.localdomain (192.168.100.135) 56(84) bytes of data.
64 bytes from myserver.localdomain (192.168.100.135): icmp_seq=1 ttl=64 time=3.88 ms
64 bytes from myserver.localdomain (192.168.100.135): icmp_seq=2 ttl=64 time=0.076 ms
64 bytes from myserver.localdomain (192.168.100.135): icmp_seq=3 ttl=64 time=0.046 ms
64 bytes from myserver.localdomain (192.168.100.135): icmp_seq=4 ttl=64 time=0.073 ms
64 bytes from myserver.localdomain (192.168.100.135): icmp_seq=5 ttl=64 time=0.077 ms
64 bytes from myserver.localdomain (192.168.100.135): icmp_seq=6 ttl=64 time=0.041 ms
So it works from only within the Ubuntu Server.

If I go in Firefox in Windows to try to access the info on the web server in Ubuntu, I get a search page on OpenDNS.com instead!

I tried http://myserver.localdomain and http://myserver but I just get the OpenDNS.com search page.

What do I do to fix it so I can get to the server on Ubuntu Guest OS from the Windows host OS?
 
Old 05-04-2009, 09:47 AM   #2
paulsm4
LQ Guru
 
Registered: Mar 2004
Distribution: SusE 8.2
Posts: 5,863
Blog Entries: 1

Rep: Reputation: Disabled
Hi -

For starters, you need to make sure the web page is accessable by IP address:

EXAMPLE http://192.xxx.yy.zzz

Once you've confirmed that, you need to:
1. Determine which DNS and/or WINS server(s) your Windows host is using (it's probably DHCP)
2. Make sure your LAN's DNS and/or DHCP is correctly configured for VMWare/Ubuntu
3. Make sure your Ubuntu is correctly configured for your LAN's DNS and/or DHCP

The easiest way to do this is (at least for a private, internal LAN) to simply use DHCP across the board.
 
Old 05-04-2009, 04:38 PM   #3
RavenLX
Member
 
Registered: Oct 2004
Posts: 98

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by paulsm4 View Post
Hi -

For starters, you need to make sure the web page is accessable by IP address:

EXAMPLE http://192.xxx.yy.zzz
I can access the page using just the IP, yes. But I rather access it by myserver.localdomain.domain-on-my-server.com instead.

Quote:
Originally Posted by paulsm4 View Post
Once you've confirmed that, you need to:
1. Determine which DNS and/or WINS server(s) your Windows host is using (it's probably DHCP)
It's set to DHCP, true.

Quote:
Originally Posted by paulsm4 View Post
2. Make sure your LAN's DNS and/or DHCP is correctly configured for VMWare/Ubuntu
I am not sure how to do that. VMWare does it automatically. I've even tried the Bridged connection in setting up the Virtual Machine network adaptor and also tried NAT.

Quote:
Originally Posted by paulsm4 View Post
3. Make sure your Ubuntu is correctly configured for your LAN's DNS and/or DHCP

The easiest way to do this is (at least for a private, internal LAN) to simply use DHCP across the board.
Ok, this is all where I don't know what to look for or what to do. All the network adaptors (wifi and wired on the host/Windows side and the two VMWare network 'adaptors') are set for DHCP.

But in Ubuntu Server itself, I wanted to use a static IP. Is that right? Or should I still be using DHCP in my /etc/network/interfaces?
 
  


Reply

Tags
dns, server, vmware



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
To Setup Home Web server for my web site KinnowGrower Linux - Server 6 08-05-2008 11:08 PM
Looking for web dev tool that can import an entire web site drokmed Linux - General 2 06-02-2008 07:30 PM
How can I capture a web site message sent on "web oriented responses". Lola Kews Linux - Software 3 03-22-2008 12:27 PM
Network card pings ok, but can't access web via router BeerMonster Linux - Networking 7 11-09-2003 10:46 AM
how can i get to this web site? doublefailure Linux - Networking 1 10-03-2002 04:45 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 08:50 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration