0

I have broadband connection in my laptop. It's getting the IP by protocol. configuration is :

ip : 192.168.1.2
subnet : 255.255.255.0
gateway : 192.168.1.1

Now I am curious, In IPV4 properties when instead of choosing "Obtain an IP address automatically", I choose "Use the following IP address" and configure everything same, why it do not work? Do DHCP do not work when we configure the IP manually? (operating system : windows-7)

EDIT : After configuring the ip manually, when I used ipconfig/all , it's showing dhcp enabled : NO. I am not doing it. Why it got disabled automatically? and how to enable it?

 DHCP Enabled. . . . . . . . . . . : No
  Autoconfiguration Enabled . . . . : Yes
  IPv4 Address. . . . . . . . . . . : 192.168.1.2(Preferred)
  Subnet Mask . . . . . . . . . . . : 255.255.255.0
  Default Gateway . . . . . . . . . : 192.168.1.1
  NetBIOS over Tcpip. . . . . . . . : Enabled
user58859
  • 518
  • 3
  • 8
  • 17

1 Answers1

2

Chances are, if you only changed the IP, you forgot the DNS settings. Switch back to using DHCP, and when you have an IP, and you can get to the internet, click Start, Run, type cmd, and hit OK. When the box comes up type:

ipconfig /all

You should see output that looks like this:

Ethernet adapter Local Area Connection:

Description . . . . . . . . . . . : Broadcom NetXtreme 57xx Gigabit Controller
Physical Address. . . . . . . . . : 00-00-00-00-00-01
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
Link-local IPv6 Address . . . . . : fe80::dc07:7edd:a65d:df5%11(Preferred)
IPv4 Address. . . . . . . . . . . : 192.168.1.2(Preferred)
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Lease Obtained. . . . . . . . . . : Friday, January 14, 2011 8:01:10 AM
Lease Expires . . . . . . . . . . : Saturday, January 15, 2011 8:01:09 AM
Default Gateway . . . . . . . . . : 192.168.1.1

DNS Servers . . . . . . . . . . . : 192.168.1.1

The last line is what you're interested in. Go back to your network settings, and where you specified the IP address, there are 2 boxes at the bottom of the same window that say DNS Server. Type in the address you see listed in the "DNS Servers" line above. If you have multiple addresses, type both in. Save your settings, and you should be good.

I'm curious though as to why you'd want to assign yourself an IP address if you have a working DHCP server on your ISP provided modem?

Jon Angliss
  • 1,782
  • 10
  • 8