Internet access without NIC card?

0

If have a USB modem dongle for INTERNET connection. Can i access INTERNET from a brand new desktop/laptop without NIC card using this dongle?

I feel that the dongle is just a modem ( with a DHCP server ) which distributes/assigns ipaddress .The ipaddress is maintained at NIC card ( after negotiation with dhcp server ).

Since NIC card is not there , this seems impossible (unless one has a virtual NIC card) .Please shed light on the IP allocation mechanism for a computer system with&without NIC card. Further references to the existing commercial computer systems will be very useful.

Puneet S. Chauhan

Posted 2014-11-18T05:03:10.257

Reputation: 3

Your dongle wouldn't even need a DHCP server or any sort of server. It simply connects you to your ISP, and your ISP runs your DHCP server and such. – Journeyman Geek – 2014-11-18T05:30:19.830

Answers

0

I feel that the dongle is just a modem ( with a DHCP server ) which distributes/assigns ipaddress .The ipaddress is maintained at NIC card ( after negotiation with dhcp server ).

This is incorrect in three ways.

First, the dongle is not just a modem. It's a network interface.

Second, why would a modem need a DHCP server? Typically a modem would be used in front of a router or other device that would provide DHCP service if that was needed. But if you only want to connect one device to the Internet, what purpose would a DHCP server have? It would have to get an IP address from somewhere else anyway, and once it did, it would already have that IP address.

Third, machines don't need physical NICs to have IP addresses. There are numerous counterexamples. For example, what about local IP addresses like 127.0.0.1? Before NICs were common, it wasn't unusual to use SLIP or PPP to get a machine on the Internet through its serial port. In fact, it was quite common to buy a modem, connect it to your serial port, and get on the Internet that way with no NIC at all.

David Schwartz

Posted 2014-11-18T05:03:10.257

Reputation: 58 310