Category Archive: Ethernet

Category:
Ethernet

Different Ways of Finding Your MAC Address on Wired & Wireless Network Cards

Different Ways of Finding Your MAC Address on Wired & Wireless Network Cards

The Answer To The Media Access Control Question
—————————-
Over the past few weeks I have received quite a few e-mails about Ethernet cards, both wired and wireless, and more specifically, about Media Access Control (MAC) addresses. I think the main reason I’ve received so many questions about Ethernet cards and MAC addresses is people trying to secure their home wireless networks and their desire to use MAC address filtering. This type of filtering in wireless networks can be configured to allow or deny specific computers to use or attach to the wireless network, based on the MAC address.

My first thought was to write an article just about MAC addresses and wireless Ethernet. After thinking about it I decided to expand on this and go over some specific information about Ethernet cards and communication.

Different Ways of Finding Your MAC Address and More
————————————————–
There are several ways of finding your Ethernet and communications protocol information. Many Ethernet card manufacturer’s have proprietary software that can reveal this information but they work differently depending on the manufacturer. So we will use the Windows 2000 and XP “ipconfig” utility since this is available in the majority of Windows Operating Systems.

First, go to “start” -> “run” and type “cmd” without the quotes. Then hit the enter key. At the command line type “ipconfig /all”, again without the quotes. Actually, just typing ipconfig without the /all will work but will only provide you with abbreviated information regarding your network cards. An example of what you might see by typing the “ipconfig /all” command is below with each item commented in green lettering:

Fault Tolerant And Highly Availability Computer Systems
—————————-
There are several ways of finding your Ethernet and communications protocol information. Many Ethernet card manufacturer’s have proprietary software that can reveal this information but they work differently depending on the manufacturer. So we will use the Windows 2000 and XP “ipconfig” utility since this is available in the majority of Windows Operating Systems.

First, go to “start” -> “run” and type “cmd” without the quotes. Then hit the enter key. At the command line type “ipconfig /all”, again without the quotes. Actually, just typing ipconfig without the /all will work but will only provide you with abbreviated information regarding your network cards. An example of what you might see by typing the “ipconfig /all” command is below:

OutPut Of The “Ipconfig /All” Command
———————————————————-
Windows IP Configuration

Host Name . . . . . . . . . . . . : Home Computer
This is the name of your computer, typically defined during the windows installation. However, it can be changed after installation.

Primary Dns Suffix . . . . . . . : domain.com
If your computer participates in a network such as a Microsoft Windows domain this item may contain the name of the domain.

Node Type . . . . . . . . . . . . : Unknown
The Node Type may say Unknown, or peer-to-peer, or in some cases “hybrid”. It is a setting that has to do with the Windows Internet Naming Services used in certain types of Windows domain networks.

IP Routing Enabled. . . . . . . . : No
This setting determines if Windows XP or 2000 will function as an IP router. If you have two or more network cards you can setup your system to act as a router, forwarding communications requests from one network to another. Windows 2000 can be configured to do this in a pretty straight forward fashion; Windows XP will need a registry modification.

WINS Proxy Enabled. . . . . . . . : No
WINS Proxy is another setting that is related to the “Node Type” we discussed earlier. It is normally not a required setting in a home or small office network, or newer types of Microsoft Windows domains.

Ethernet adapter Wireless Network Connection 2:
If you have multiple Ethernet (network) cards in your systems, as I do in this laptop, you will have multiple listings. This one happens to be the second Ethernet card, an internal wireless Ethernet card.

Description . . . . . . . . . . . : Broadcom 802.11b/g WLAN
This is the description of the Ethernet card, usually the Name / Manufacturer and type of Ethernet card. In this case, it is a Broadcom wireless Ethernet card built into my laptop.

Physical Address. . . . . . . . . : 00-90-4B-F1-6E-4A
And here we have the MAC address. The MAC address is a 48 bit hexadecimal code and is suppose to be a totally unique address. It is 48 bits because each number or letter in hexadecimal represents 8 bits. Hexadecimal numbers range from 0,1,2,3,4,5,6,7,8,9,A, B, C, D, E, F. There are 6 alphanumeric codes hence 6*8=48(bits). The first 3 codes identify the manufacturer of the card and the remaining codes are used to create a unique number. Theoretically there should never be a card with same MAC address on a local network. However, there are a few exceptions. There are software tools that allow you to change this code. In fact, this is a step some hackers take to attack other systems on a local network. I say local network because MAC addresses are not routable between network segments. By spoofing this address, you can impersonate another machine on the local network. Traffic that was bound for the intended target can be redirected to the hacker’s machine. This is the address you would also use to populate a MAC address, or physical address table when setting up your wireless access point to support MAC address filtering.

DHCP Enabled. . . . . . . . . . . : Yes
DHCP, or the Dynamic Host Control Protocol, if enabled means your computers IP address is being provided by a DHCP server on you network. The DHCP server could be your wireless access point, cable/dsl router, cable modem, or a server on your network. Also, if a DHCP server is not enabled on your network, your computers Operating System will auto generate a random IP address within a certain predefined range. This means you could network a group of systems together without having to manually assign the IP settings.

IP Address. . . . . . . . . . . . : 192.168.0.117
This parameter provides you with your current IP address. The address listed above is what is called a “private” address. There are certain classes of IP addresses that have been set aside for private use. This means for your internal, local, or private network at home or office. These addresses are not, or should not, be routable on the Internet. The Internet routes what are called “valid” IP addresses. Your cable/dsl router or cable modem has a valid IP address assigned to its “external” network interface. The external interface may be your phone line or cable TV cable.

Subnet Mask . . . . . . . . . . . : 255.255.255.0
The Subnet Mask is a special number, or in some sense, filter, that breaks down your IP address, in this case private IP address, into certain groups. IP addresses and Subnet Masks can be a complicated matter and would take an entire article to go over.

Default Gateway . . . . . . . . . : 192.168.0.254
The default gateway, the IP addresses listed above, is the IP address of the device that will route your request, such as when you try to browse a website, to the Internet. It is a bit more complicated than that though as gateways or routers can route traffic to various different networks, even other private networks. At your home or small office, this gateway most likely is your cable/dsl modem or router.

DHCP Server . . . . . . . . . . . : 192.168.0.49
The DHCP server, remember we talked a little about this above, is the device that assigns your computer an IP address and other information. DHCP servers can assign all kinds of information such as; Default Gateway, Domain Name Servers (DNS), IP address, Subnet Mask, Time Server, and much more.

DNS Servers . . . . . . . . . . . : 192.168.0.49, 64.105.197.58
DNS Servers are internal or external servers that resolve Fully Qualified Domain Names (FQDN), to IP addresses. This is done because computers don’t actually transmit your requests using the domain name, they use the IP address assigned to the FQDN. For most home or small office users, the primary DNS server is the IP address of your cable/dsl router. Your cable/dsl router than queries an external DNS server on the Internet to perform the actual resolution of the FQDN to IP address. The address 192.168.0.49 is an internal private device on my network whereas the 64.105.197.58 is an external public Internet DNS server and is present just in case my router has trouble performing the DNS resolution tasks.

Lease Obtained . . . . . . . . . .: Sunday, March 19, 2006 6:38:16 PM
This information tells you when your computer received its IP address and other information from a DHCP server. You will notice it says “Lease Obtained”, that is because most DHCP servers only lease the IP address to you from a pool of available address. For instance, your pool may be 192.168.1.1 through 192.168.1.50. So your DHCP server has 50 IP addresses to choose from when assigning your computer its IP address.

Lease Expires . . . . . . . . . . : Wednesday, March 29, 2006 9:38:16 PM
When the IP address, assigned by the DHCP server, lease expires it will attempt to lease you the same or another IP address. This function can typically be changed on the DHCP server. For instance, on some fully functional DHCP servers, you can configure the Lease to never expire, or to expire within 1 day and so on.

Why Are MAC Addresses So Important And How Do They Work
——————————————————
To jump back to MAC address for just a bit. You may think that IP addresses are the most important thing when it comes to network communication. The reality is, MAC addresses are very important because without them computers would not be able to communicate over Ethernet networks. When a computer wants to speak with another computer on a local network, it will make a broadcast request, or ask a question, of who owns a particular IP address. For instance, your computer may say “Who is 192.168.0.254”. Using the information above, my default gateway is 192.168.0.254 and will answer “I am “00-90-4B-F1-6E-4A” 192.168.0.254”. It sends back its MAC address. That MAC address then goes into what is called a Address Resolution Protocol (ARP) table on your computer. You can see this information by going to the command prompt like you did above and typing “arp –a”. You will get information like the following:

Internet Address Physical Address Type
192.168.0.49 00-12-17-5c-a2-27 dynamic
192.168.0.109 00-12-17-5c-a2-27 dynamic
192.168.0.112 00-0c-76-93-94-b2 dynamic
192.168.0.254 00-0e-2e-2e-15-61 dynamic

How A Hacker Can Use MAC Addresses In An Attack
———————————————-
You will notice the IP addresses and to the right of them the MAC addresses. Without this information, without the MAC address, you would not be reading this article right now. MAC addresses are not routable like IP addresses. They work on your local or private network. However, devices on the Internet perform the same tasks. Routers and switches maintain a list of their peer device MAC address just like your computers and devices on your home or office network. I mentioned above that MAC addresses can be changed in order to redirect requests. For instance, if I were on your office network and you had an internal web server that took personal information as input, I could tell your computer to go to my laptop for the web site by broadcasting my MAC address tied to the real web servers IP address. I would do this when you computer asked “Who is the “Real Web Server””. I could setup a fake web server that looks just like the real thing, and start collecting information the real web server would normally collect. You can see how dangerous this can be.

Conclusion
———–
There are several other easy ways you can find your MAC address but they can be a little confusing if you have more than one internal network card. Most external USB or PCMCIA wired and wireless Ethernet cards have their MAC address printed on them. In cases where the wired or wireless network card is inside your computer, such as in laptops, the MAC address is sometimes printed on the bottom of the laptop. Even Desktop systems cards that are inserted in PCI slots have the MAC address printed on the Ethernet card.


Hardware Terms: network card bios

Category:
Ethernet

Uninstall Laptops ethernet card -How to thoroughly remove Laptops ethernet card from your PC?

Uninstall Laptops ethernet card -How to totally get rid of Laptops ethernet card from your Personal computer?

Do you want to fully uninstall Laptops ethernet card from the computer but encountering types of uninstall troubles? If this is the scenario for you then you may be at the appropriate place right here. The uninstall steps below are what I carried out to entirely uninstall Laptops ethernet card from my outdated computer.

But, make sure you bear in mind to 1st again up your Windows registry and execute the down below measures very carefully.

Action one:

Go to Start-&gt Management Panel-&gt and then Create/Eliminate Programs-&gt Here, please locate Laptops ethernet card in the plans record and then click “Adjust/Eliminate” button to begin the uninstall procedure -&gt comply with the on-screen measures to finish the removing.

Step two:

Navigate your mouse to Commence, Run, kind “regedit” and press Enter to open Windows registry editor. Here, please develop the registry checklist to track down and then delete the linked Laptops ethernet card registry entries from the two branches.

HKEY_Existing_User Software
HKEY_Local-MACHINESOFTWARE

Right after a reboot of the pc, Laptops ethernet card will be totally uninstalled kind your computer.

However, for these who are not specialist on the pcs, it is not suggested to uninstall Laptops ethernet card manually when its developed-in uninstaller does not function. Most of the time, a slight blunder will often consequence in a total program corruption. At this time, a expert uninstaller is essential for you to completely uninstall Laptops ethernet card and all unwanted plans. Uninstallers are designed for Laptop customers to carefully scan and eliminate applications each from tough drivers but also Windows registry.

Are you in want to uninstall Laptops ethernet card and other unneeded plans effortlessly? If so, make sure you go to Uninstall Helper for visual and action-by-phase uninstall tutorials. Right here, you will get solutions to speedily offer with the desired plans on your computer.

 


Hardware Terms: laptop bios programming card, laptop bios programming, ethernet card, hardware removing a network card

Category:
Ethernet

Bsnl broadband service

Bsnl broadband service

Here is my Step-By-Step guide to configuring a Wi-Fi network with BSNL DataOne. Though many wireless routers claim that it is a no-brainer setup to configure the wireless network, I found it to be not as easy as it looks to be. For example, NetGear comes with a wizard that never works with BSNL broadband connected via HUAWEI SmartAX 880. For those of you desperate to take your BSNL DataOne broadband wireless, follow these steps. It took me more than 2 days to figure and come out with these configuration details.

bsnl broadband service

Before I start, let me share what I have with this bsnl broadband connection:

1)BSNL DataOne 256Kbps connection.
2)HUAWEI SmartAX MT880 (The modem supplied by BSNL).
3) (configuring netgear dg632 for BSNL)NetGear WGR614v5

bsnl broadband service

There are 2 steps to configuring your wireless network. First, you have to change the default settings of the SmartAX MT880 modem and configure it to enable PPPoE (PPP over Ethernet). Second, you have to configure the NetGear Router to talk to the modem.

bsnl broadband service

Keep your modem, wireless router and your username and password from BSNL handy before you proceed to the next step.

If you want to change your existing configuration, take a backup of your configuration. This guide is to build your network from the ground-up.

1)Configuring and testing your Broadband connection
·Setup the modem as per the instructions mentioned in the manual. Ensure that the RJ11 (thin) cable from the splitter is connected to the ADSL port and the RJ45 cable connects your machine to the Ethernet port of the modem. 

·Change the IP properties of your Ethernet card to the following:
192.168.1.2
255.255.255.0
192.168.1.1

·Open the browser and type http://192.168.1.1 to go to the HUAWEI configuration tool.

·Enter ‘admin’ as username and ‘admin’ as password

·Expand the Home node and select the WAN Setting

·Under this web page, configure the following:
PVC Number – PVC 0
Wan Type – PPP
Connection Type – PPPoE
VPI/VCI – 0 / 35
Default Route – Enabled
User Name – 
Password – 
Use DNS – Enabled
Max Idle Time – Always On

·Click on Apply and allow the modem to restart.

·Close the browser window

·Open the browser and type http://192.168.1.1

·Enter ‘admin’ as username and ‘admin’ as password

·You should see the Summary page. The Status is normally Red indicating that the connection is not ON.

·Click on the Plug icon in the Note column to connect.

·After the Connecting message, you should see the summary page again with the Status turning Green. Notice the IP Address and the Gateway Address.

·Expand Tools node and click on Misc.

·Type www.msn.com and click on Ping

·You should see Ping Result: Successful

·Click on the Lan Settings link under the Advanced node.

·Configure the following:
IP Address – 192.168.1.90
Subnet Mask – 255.255.255.0(/24)
Local Domain Name – Blank

·Click on Apply and allow the modem to restart

·Open the Network properties of your Ethernet card and change the IP properties to the following

IP Address – 192.168.1.2
Subnet Mask – 255.255.255.0
Default Gateway – 192.168.1.90
Preferred DNS server – 61.1.96.69 (BSNL DNS Server IP)
Alternate DNS server – 61.1.96.71 (BSNL DNS Server IP)

·Open your browser and type your favorite URL. You should be online by this time!

2)Configuring the Wireless Router and enabling the WPA security
·Connect the network cable from the NetGear wireless router to the machine.

·Open the IP Properties of your Network card and Enable DHCP. Select the following on the IP properites dialog.
Obtain IP Address Automatically
Obtain DNS Server Address Automatically

·Open the browser and type http://192.168.1.1/basicsetting.htm

·Enter ‘admin’ as username and ‘password’ as the password

·Click on Wireless Settings link on the navigation pane and configure with the following values

Wireless Network
Name (SSID) - 
Region – Asia
Channel – 11
Mode – g and b
Security Options 
WEP (Wired Equivalent Privacy)
Security Encryption (WEP)
Authentication Type – Automatic
Encryption Strength – 64bit
Security Encryption (WEP) Key
Passphrase - 
·Click on Generate

·Record the value of Key1 – This is required when you log on to your Wi-Fi network the first time. 

·Click on Apply and wait till the router reboots 
(Wireless will not be enabled till you complete the next step)

·Click on the Basic Settings link on the left side navigation pane and configure the following

Does your Internet connection require a login? – No
Account Name – blank
Domain Name – blank
Internet IP Address
Use Static IP Address
IP Address – 192.168.1.91
IP Subnet Mask – 255.255.255.0
Gateway IP Address – 192.168.1.90
Domain Name Server (DNS) Address
Use These DNS Servers
Primary DNS – 61.1.96.69
Secondary DNS – 61.1.96.71
Router MAC Address
Use Default Address
·Click on Apply and wait till the router restarts

·Connect the Network Cable coming from the ADSL Modem to the Wireless Router

Few things to remember –
·Don’t connect the ADSL Lan Cable to the Internet Uplink port of the Wireless Router. It never worked for me. Always connect it to one of the 4 ports excluding the designated Internet port.

·IP Addresses can be anything of your choice. But it is a good idea to follow the 192.168.x.x convention

·If you get lost any time, feel free to reset the configuration by poking a pin into the reset slot on the modem and the router.

·Don’t compromise on the security. Always enable WPA and save your key. Don’t let your friendly neighbors ride on your network! 

Have a happy Wi-Fi surfing and drop a comment in case you want more inputs.

Do check out bsnl broadband forum for the latest tips and tricks
The way u can connect wirelessly using huawei is that u just have to make sure your laptop can see the wireless network and connect to the network. then your taskbar will be showing wireless area network connected. then u just have to dial your pppoe connection and it will use the wireless connection to the modem to dial the connetion and voila! your internet is connected. though it may take a little more time in connecting through the wireless network.give it two or 3 trys. but with this modem you cannot have an always on/connected internet access on wifi like you could using d-link modems. I have a d-link modem at my house in my hometown with which my pc is always connected to the net. but here I have to DIAL every time i want access.Not going through. I have tried it in two ways
1. Connected to internet through wired connection and then tried to use the wireless connection to browse.
2. Initiate the connection through wireless mode.
In bothcases, my laptops show that they are connected to the wireless network, but cannot browse (if internet connection is already alive) or cannot open the connection in case 2.
Would appreciate if you can provide detailed list of the settings (both on your computer and the HUAWEI WA1003A). Also, one other confusing thing is the TCP/IP properties of the wired LAN adapter and the wireless LAN adapter.Main Question:
I have the Huawei modem (Type II) wireless Ethernet and USB that BSNL gives. I want to use this with Airtel, is that possible? If yes, how?

History: (if interested)
I am switching from BSNL to Airtel becasue BSNL has not shifted my connection to my new house since the last 4 months.
I was extremely satsfied with the 512MB/5GB deal. Then I shifted my house and applied to BSNL for shifting my connection. It’s been so long. it’s crazy! I spent approx Rs.5500 to get the damn thing (deposits, installation, modem purchase, etc.). Now they are giving me some stupid excuses and not shifting the connection to the new place.

Airtel came 3 months ago and dug up the road one day, laid the cable and put the box the next day. Then they came door-to-door offering the connections for just 500 bucks! (refundable!) and 700 bucks a month rental!
I dint take it then in the hopes of getting BSNL, but they have let me down.

Now I want to take the Airtel thing, but I have this 1800 rupee modem that I got from BSNL, I don’t want to spend on another Airtel modem.
The Airtel technicians will not help me since they want to sell their own modem.

Please help me find a way to use the hawa-hawai modem with hawa-tel! Iam very much greatful to this website for setting BSNL BROAD Band wireless connection at my home without anybody help . I have PC and Wireless ADSL Router(Quidway WA1003A SERIES) fro BSNL and is called TYPE 2 MODEM. Iam working for CAPGEMINI CONSULTING PVT. LTD (BANGALORE) gave me a Laptop (Dell- LATITUDE D620) which is having Intel Proset/Wireless in built. 

After taking the help and bit of R&D i succesfully connected to this Type 2 Modem. Iam able to Surf Internet in both PC and Laptop. Laptop is connected by wireless with Modem and pc is connected to Modem via USB.

Enjoying my surfing at good speed. Thanks to web site and BSNL. I want that BSNL should give unlimited surfing for home user at for 250 Plan also. have a BSNL dataone broadone connection and had got a laptop. The BSNL guy who came to install was useless….. I had somehow figured it out myself and set it up.
A year later, I’ve bought another laptop….. am trying to set up this one but.. gosh…. I’ve forgotten the Key/password for the wireless modem…. I think the default is abcd…… something like that.. its a hexadecimal one…..

Further the 192.168.1.1 wesbite….. the ‘admin’ username and ‘admin’ password is also not working.. I must have changed the password but I’ve tried all my regular passwords but cannot get in….. anyidea, how to acess the 192.168.1.1 site ? This god damn site does not even have a ‘Forgotten password’ link……….Here is my Step-By-Step guide to configuring a Wi-Fi network with BSNL DataOne. Though many wireless routers claim that it is a no-brainer setup to configure the wireless network, I found it to be not as easy as it looks to be. For example, NetGear comes with a wizard that never works with BSNL broadband connected via HUAWEI SmartAX 880. For those of you desperate to take your BSNL DataOne broadband wireless, follow these steps. It took me more than 2 days to figure and come out with these configuration details.

Before I start, let me share what I have with this bsnl broadband connection:

1)BSNL DataOne 256Kbps connection.
2)HUAWEI SmartAX MT880 (The modem supplied by BSNL).
3) (configuring netgear dg632 for BSNL)NetGear WGR614v5

There are 2 steps to configuring your wireless network. First, you have to change the default settings of the SmartAX MT880 modem and configure it to enable PPPoE (PPP over Ethernet). Second, you have to configure the NetGear Router to talk to the modem.

Keep your modem, wireless router and your username and password from BSNL handy before you proceed to the next step.

If you want to change your existing configuration, take a backup of your configuration. This guide is to build your network from the ground-up.

1)Configuring and testing your Broadband connection
·Setup the modem as per the instructions mentioned in the manual. Ensure that the RJ11 (thin) cable from the splitter is connected to the ADSL port and the RJ45 cable connects your machine to the Ethernet port of the modem. 

·Change the IP properties of your Ethernet card to the following:
192.168.1.2
255.255.255.0
192.168.1.1

·Open the browser and type http://192.168.1.1 to go to the HUAWEI configuration tool.

·Enter ‘admin’ as username and ‘admin’ as password

·Expand the Home node and select the WAN Setting

·Under this web page, configure the following:
PVC Number – PVC 0
Wan Type – PPP
Connection Type – PPPoE
VPI/VCI – 0 / 35
Default Route – Enabled
User Name – 
Password – 
Use DNS – Enabled
Max Idle Time – Always On

·Click on Apply and allow the modem to restart.

·Close the browser window

·Open the browser and type http://192.168.1.1

·Enter ‘admin’ as username and ‘admin’ as password

·You should see the Summary page. The Status is normally Red indicating that the connection is not ON.

·Click on the Plug icon in the Note column to connect.

·After the Connecting message, you should see the summary page again with the Status turning Green. Notice the IP Address and the Gateway Address.

·Expand Tools node and click on Misc.

·Type www.msn.com and click on Ping

·You should see Ping Result: Successful

·Click on the Lan Settings link under the Advanced node.

·Configure the following:
IP Address – 192.168.1.90
Subnet Mask – 255.255.255.0(/24)
Local Domain Name – Blank

·Click on Apply and allow the modem to restart

·Open the Network properties of your Ethernet card and change the IP properties to the following

IP Address – 192.168.1.2
Subnet Mask – 255.255.255.0
Default Gateway – 192.168.1.90
Preferred DNS server – 61.1.96.69 (BSNL DNS Server IP)
Alternate DNS server – 61.1.96.71 (BSNL DNS Server IP)

·Open your browser and type your favorite URL. You should be online by this time!

2)Configuring the Wireless Router and enabling the WPA security
·Connect the network cable from the NetGear wireless router to the machine.

·Open the IP Properties of your Network card and Enable DHCP. Select the following on the IP properites dialog.
Obtain IP Address Automatically
Obtain DNS Server Address Automatically

·Open the browser and type http://192.168.1.1/basicsetting.htm

·Enter ‘admin’ as username and ‘password’ as the password

·Click on Wireless Settings link on the navigation pane and configure with the following values

Wireless Network
Name (SSID) - 
Region – Asia
Channel – 11
Mode – g and b
Security Options 
WEP (Wired Equivalent Privacy)
Security Encryption (WEP)
Authentication Type – Automatic
Encryption Strength – 64bit
Security Encryption (WEP) Key
Passphrase - 
·Click on Generate

·Record the value of Key1 – This is required when you log on to your Wi-Fi network the first time. 

·Click on Apply and wait till the router reboots 
(Wireless will not be enabled till you complete the next step)

·Click on the Basic Settings link on the left side navigation pane and configure the following

Does your Internet connection require a login? – No
Account Name – blank
Domain Name – blank
Internet IP Address
Use Static IP Address
IP Address – 192.168.1.91
IP Subnet Mask – 255.255.255.0
Gateway IP Address – 192.168.1.90
Domain Name Server (DNS) Address
Use These DNS Servers
Primary DNS – 61.1.96.69
Secondary DNS – 61.1.96.71
Router MAC Address
Use Default Address
·Click on Apply and wait till the router restarts

·Connect the Network Cable coming from the ADSL Modem to the Wireless Router

Few things to remember –
·Don’t connect the ADSL Lan Cable to the Internet Uplink port of the Wireless Router. It never worked for me. Always connect it to one of the 4 ports excluding the designated Internet port.

·IP Addresses can be anything of your choice. But it is a good idea to follow the 192.168.x.x convention

·If you get lost any time, feel free to reset the configuration by poking a pin into the reset slot on the modem and the router.

·Don’t compromise on the security. Always enable WPA and save your key. Don’t let your friendly neighbors ride on your network! 

Have a happy Wi-Fi surfing and drop a comment in case you want more inputs.

Do check out bsnl broadband forum for the latest tips and tricks
The way u can connect wirelessly using huawei is that u just have to make sure your laptop can see the wireless network and connect to the network. then your taskbar will be showing wireless area network connected. then u just have to dial your pppoe connection and it will use the wireless connection to the modem to dial the connetion and voila! your internet is connected. though it may take a little more time in connecting through the wireless network.give it two or 3 trys. but with this modem you cannot have an always on/connected internet access on wifi like you could using d-link modems. I have a d-link modem at my house in my hometown with which my pc is always connected to the net. but here I have to DIAL every time i want access.Not going through. I have tried it in two ways
1. Connected to internet through wired connection and then tried to use the wireless connection to browse.
2. Initiate the connection through wireless mode.
In bothcases, my laptops show that they are connected to the wireless network, but cannot browse (if internet connection is already alive) or cannot open the connection in case 2.
Would appreciate if you can provide detailed list of the settings (both on your computer and the HUAWEI WA1003A). Also, one other confusing thing is the TCP/IP properties of the wired LAN adapter and the wireless LAN adapter.Main Question:
I have the Huawei modem (Type II) wireless Ethernet and USB that BSNL gives. I want to use this with Airtel, is that possible? If yes, how?

History: (if interested)
I am switching from BSNL to Airtel becasue BSNL has not shifted my connection to my new house since the last 4 months.
I was extremely satsfied with the 512MB/5GB deal. Then I shifted my house and applied to BSNL for shifting my connection. It’s been so long. it’s crazy! I spent approx Rs.5500 to get the damn thing (deposits, installation, modem purchase, etc.). Now they are giving me some stupid excuses and not shifting the connection to the new place.

Airtel came 3 months ago and dug up the road one day, laid the cable and put the box the next day. Then they came door-to-door offering the connections for just 500 bucks! (refundable!) and 700 bucks a month rental!
I dint take it then in the hopes of getting BSNL, but they have let me down.

Now I want to take the Airtel thing, but I have this 1800 rupee modem that I got from BSNL, I don’t want to spend on another Airtel modem.
The Airtel technicians will not help me since they want to sell their own modem.

Please help me find a way to use the hawa-hawai modem with hawa-tel! Iam very much greatful to this website for setting BSNL BROAD Band wireless connection at my home without anybody help . I have PC and Wireless ADSL Router(Quidway WA1003A SERIES) fro BSNL and is called TYPE 2 MODEM. Iam working for CAPGEMINI CONSULTING PVT. LTD (BANGALORE) gave me a Laptop (Dell- LATITUDE D620) which is having Intel Proset/Wireless in built. 

After taking the help and bit of R&D i succesfully connected to this Type 2 Modem. Iam able to Surf Internet in both PC and Laptop. Laptop is connected by wireless with Modem and pc is connected to Modem via USB.

Enjoying my surfing at good speed. Thanks to web site and BSNL. I want that BSNL should give unlimited surfing for home user at for 250 Plan also. have a BSNL dataone broadone connection and had got a laptop. The BSNL guy who came to install was useless….. I had somehow figured it out myself and set it up.
A year later, I’ve bought another laptop….. am trying to set up this one but.. gosh…. I’ve forgotten the Key/password for the wireless modem…. I think the default is abcd…… something like that.. its a hexadecimal one…..

Further the 192.168.1.1 wesbite….. the ‘admin’ username and ‘admin’ password is also not working.. I must have changed the password but I’ve tried all my regular passwords but cannot get in….. anyidea, how to acess the 192.168.1.1 site ? This god damn site does not even have a ‘Forgotten password’ link……….


Hardware Terms: ADSL MODEM Huawei SmartAX MT880, bsnl kerala dataone broadband quidway wa1003a settings, configuring airtel on huawei wa1003a setting static address