Wednesday, January 25, 2017

Cisco Router Password Recovery Help Number #1888-676-4496

Cisco Router Password Recovery 

This ‘How to' is written to show the step by step password recovery of the Cisco Routers. It is assumed that you have a prior knowledge of what a router is and its basic function. It is also assumed the you are having some experience of configuring the router.

Please do not follow these steps if you are a new to Routers, as this can damage the IOS or any physical interface of the router.

1.
Connect a computer to the router’s Console port using the Console cable that came with your router (it is usually flat and light blue).

Use these terminal settings:
* 9600 baud rate
* No parity
* 8 data bits
* 1 stop bit
* No flow control

2.
Turn the router off using the power switch and turn it back on.

3.
Once text starts popping up on the screen, send the break command CTRL + B or CTRL +BREAK (sometimes it is CTRL +X). This will abort the boot and present you with a rommon 1> prompt

4.
From the new prompt you need to change the configuration register using the following command: confreg 0x2142

5.
If you are using an older model of router you may need to enter o/r 0x2142

6.
Now you need to recycle the router with the reset command.

7.
If you used the o/r command then reset the router with the I command

8.
Once the router finishes restarting you will find that there are no passwords to deal with, so you can enter enabled mode carte blanche.

9.
Once in enabled mode enter this: copy start run. This will copy the startup config to the running config.

10.
Now, go into configuration mode with the config t command

11.
Once there enter the new password with the enable secret password command (i.e. enable secret admin).

12.
Now set the configuration register back to normal with this command: confreg 0x2102

13.
Exit config mode and enter the command copy run start to copy the new configuration to ram.

14.
Now it is time to reload your router

15.
Once the router is back up you need to configure all of your interfaces with the no shutdown command or they will not work.

Contact us for Cisco Router Technical Support Call now at 1-888-676-4496

Monday, January 2, 2017

@1 888 676 4496 Cisco Router Tech Support Phone Number|Cisco Router Customer Care Number

Cisco Router Tech Support 1 888 676 4496

Configure Cisco Router Step By Step Guide

This tutorial explains how to configure Cisco router step by step. Cisco router configuration commands are explained in packet tracer.Cisco router is a device that switches data packets between two different networks. By default two different IP network cannot communicate with each other. They need a mediator device that exchanges their packets. Routers do this job successfully by taking packet from one network and delivering it to another network. This process is called routing.
We need to perform some initial configurations on router before it can be used for routing. In this article we will explain these configurations.
We will use Packet Tracer network simulator software for demonstration. Beside Packet Tracer You can also use any other network simulator software such as Boson, GNS or even better if you can afford, use a real Cisco device. No matter what option you choose, till this uses Cisco IOS output will be same.

Create a network topology as illustrate in following figure
We have created this topology to give you a better overview of commands. You can use single router if you are unable to replicate this topology in packet tracer. Alternatively you can download this pre-created topology.
No matter what you prefer, for reset of this article I assume that you have one router available in work space.

Access CLI prompt of router

Cisco IOS supports various command modes, among those followings are the main command modes.
User EXEC Mode
Privileged EXEC Mode
Global Configuration Mode
Interface Configuration Mode
Sub Interface Configuration Mode
Setup Mode
ROM Monitor Mode
You need to execute specific commands to navigate from one mode to another.

IOS commands are not case sensitive; you can enter them in uppercase, lowercase, or mixed case.
Password is case sensitive. Make sure you type it in correct case.
In any mode, you can obtain a list of commands available on that mode by entering a question mark (?).
Standard order of accessing mode is
User Exec mode => Privileged Exec mode => Global Configuration mode => Interface Configuration mode => Sub Interface Configuration mode
Router will enter in setup mode only if it fails to load a valid running configuration.
Router will enter in ROMMON mode only if it fails to load a valid IOS image file.
You can manually enter in ROMMON mode for diagnostics purpose.
Enter in global configuration mode to execute following commands.

Change default router name

By default Router name is configured on routers. We can configure any desired name on router. hostname command will change the name of router. For example following command will assign LAB1 name to the router.

Configure password on cisco router

Router is a critical device of network. It supports multiple lines for connection. We need to secure each line [port].

Secure console port

Secure auxiliary port

Auxiliary port provides remote access to router. You can attach modem in this port. Not all devices support this port. If your router supports this port use following commands to secure it.

Enable telnet access on cisco router

Depending on the model number and IOS software version router may supports various number of VTY connections range from 5 to 1000. VTY is the standard name for telnet and SSH connection. By default only first five VTYs connections are enabled. But you cannot connect them. When you try to connect them remotely you will get following message

This message indicates that password is not set on VTY lines. Password is required to connect VTYs. Following commands set password to TELCNN on VTYs line.
In above example we set password on all five lines collectively but you can do this separately if you need different passwords for different lines. Steps will be same.
line vty [line number] command will move into that specific line.
password [password] command will assign the desired password.
login command will enable that line to accept the connection.

Secure privilege exec mode with password

Along with access lines we can also secure privilege exec mode with password. We have two commands to configure the password.
Switch(config)# enable password Privilege_EXEC_password
Switch(config)# enable secret Privilege_EXEC_password
Both commands will set the password on privilege exec mode. Difference between these commands is the method of password storage. enable password command will store password in plain text while enable secret command will store password in encryption format.

Login banner

We can configure two types of banner on routers; MOTD banner and Exec banner.
banner exec command is not available in packet tracer. You can practice with banner motd command. Both commands work in same manner. Only the difference between these commands is the place of display. MOTD banner will display before the login. An EXEC banner will display after the authentication process and before the exec mode.
Both commands use delimiting character to specify the starting and ending of message. It means command parser will terminate the message on delimiting character instead of the Enter key. This feature allows us to span the message in multiple lines.

Configure clock time zone

Router allows us to localize the time zone. Following command will set time zone to +5 hour of EST [Eastern Standard Time].

Assign hostname to IP Address


Hostname are easy to remember. We can use host name instead of their IP address while connecting with remote address. Router resolves IP address to hostname in two ways: static and dynamic.
In static method we have to assign hostname to IP address.
In dynamic method we have to configure an external DNS server and need to configure its IP address on router.

show hosts command will display the currently configured hosts with their IP addresses. Following figure illustrate an example of static entry for hostname.

Disable automatic domain lookup

By default routers are configured to resolve every word that is not a command. It will first look in static DNS table for an entry. If it fails to find an entry in static DNS table, it will try with DNS server at address 255.255.255.255. If you are not going to use DNS server or hostname facility, it is better to turn this off. It will save your time because every incorrectly typed command will cost you a wait of minute or two.
no ip domain-lookup command is used to disable this feature.

Enable logging synchronous

Whenever IOS has any kind of notification, it will display that on command prompt. It fines until prompt is free. What if you are typing a command and notification line appears in the middle of the command? This is really annoying. Luckily we can stop this behavior. logging synchronous command will enable synchronization at command prompt.
After this if IOS has anything to display it will move prompt and your typed command in next line. Notification will not insert in the middle of command. If you continue typing, the command will execute properly, even though it looks wrong at prompt.

Disable auto logout from console line

Cisco IOS has a great security feature to secure the console line. It automatically logs out ideal connection in 10 minutes. You can disable this feature in lab environment. exec-timeout 0 0 command will disable this.Never use this command in real world. It could create security risk to your network.

Disable router interface

By default all interface are administratively down on startup. We should also follow this rule.
For security reason, we should always disable unused interface on router. shutdown command is used to disable the interface.
shutdown router interface
Saving running configuration in cisco router
Router keeps configuration in RAM. All settings that we have made in this article will erase once the router reboot. To preserve this configuration after reboot we must have to save this. Following command will save running configuration in NVRAM.
copy running-config startup-config command cisco router
Erasing configuration in cisco router

We have done our practice now make it available for next round of practice. As we know that routers load configuration file from NVRAM in startup.
At the end of startup it takes configuration file from NVRAM and parse it RAM. We need to erase this configuration file from NVRAM to remove configuration. Following command will delete configuration file from NVRAM.


Thursday, December 29, 2016

Cisco Router Customer Care Number 1-888-676-4496 (Reg.)|Cisco Router Tech Support Number

About Cisco Router Help Desk Service


Cisco routers are treat as the best among the routers. They are genuine and good. The Cisco system is a very popular American company that is master in designing, manufacturing and selling networking equipments.

If you are having any kind of difficulty with regards to the installation, functions or upgradation of your wireless Cisco system, consider getting in touch with us at TechSaviours for real time remote support.

we have expert technicians to resolve your all the commonly faced issues that are related to your Cisco routers.

we have highly skilled tech support team that can fix all the issues that you generally face with your Cisco router. All your issues are handled by our certified technicians in an appropriate manner. Our Cisco Router Customer Support is available 24/7 365 Days and you can approach us for resolving your problems at any time of the day. Some of the support service offered by us for Cisco routers is as follows.

    We help to resolve the issues related to Wired and wireless Cisco routers.
    Our expert technicians help in installing the latest available Cisco router driver.
    We even offer technical support for trouble shooting the broken DNS relay function.
     We at Techsaviours even resolve the problems related to the wireless connection.
    Our highly experienced technicians solve the issues concerned with the Router Firewall.
    We even offer support service for carrying out general troubleshooting of the Cisco routers.
    The team of talented technicians at Techsaviours resolves issues concerned with the interference in the network channel.
    We offer complete solutions for the problems of the Cisco routers.
    Our technicians mesh the Cisco routers with your systems.
    We also provide support service to configure your driver settings of your existing system to accommodate the Cisco router.
    Our engineers properly help you to set up WAN and LAN settings.
    We tend to pull up your internet speed by troubleshooting your router as needed.
    Our skilled technicians also work on resolving the prevailing compatibility problems between your system and the Cisco router.

So, whenever you happen to face any issue with functioning of your Cisco router, all you need to do is simply give us a call at 18886764496 on our toll-free number and our Cisco Router Customer Service is always available at your service to resolve the regarding issues. Our technical assistance is available for our clients at any time of the day and throughout the year.
Our Cisco Router technical support phone number is always available for clients to help their different issues with Router and give appropriate answers. Our dedication and committed approach towards clients furnished us to convey best telephonic customer support service at extremely affordable prices with complete fulfillment and superb quality.

Call our Cisco Router Technical Support Number  +1-888-676-4496 Right Now to Get Instant Help
Disclaimer
Cisco Router Customer Support Number is an independent provider of remote tech support for third party products. Any use of third party trademarks, brand names, product and services is only referential. Cisco Router Tech Support Number hereby disclaims any sponsorship, affiliation or endorsement of or by any third-parties. If your product is covered by warranty, the Cisco router tech support service maybe available for free from manufacturer
Cisco Router Technical Support Phone Number
Cisco Router technical Support Number
Cisco Router tech support phone number
 Cisco Router tech support number
Cisco Router tech support
Cisco Router Customer support phone number
Cisco Router Customer support number
Cisco Router Customer support
Cisco Router customer service phone number
Cisco Router customer service number
Cisco Router customer service
Cisco Router customer care phone number
Cisco Router customer care number
Cisco Router customer care
Cisco Router help desk phone number
Cisco Router help desk number
Cisco Router help desk
Cisco Router Toll free number
Cisco Router help line number
Cisco Router Contact Number
Cisco Router Phone Number
 Cisco Router Contact Number

Friday, December 16, 2016

Cisco Router Customer Service 1-888-676-4496 Number|Cisco router Technical Support Number

How to Boost WiFi Cisco Router Speed

In a today life Wi-Fi is one of the most important and useful parts of using a computer, and it’s a also one of the most frustrating If you’re your %Cisco router give you slow speeds, bad reception, and other Wi-Fi issues, here I share some easy step to speed up your router Wi-Fi in your home. so go to with my easy step. if you speed up your wifi speed then first you purchase latest Cisco wi fi Router,Netgear Router and many more router in market. 

Use the latest wifi Technology 

 If you want to speed up wifi then reliable as possible is to use up-to-date hardware. I'm gone through the Some basics of router hardware. The first and main thing you need to know: Wireless A, B, and G are old and slow version, and wireless N (and the even newer wireless AC) It will give you the fastest speeds around. But Note that you will need both a wireless N router and a wireless N card in your computer or laptop if you really want the full speed boost.

 Find the perfect spot or place for your router
If your router is ugly so don't hide it behind Tv Cabinet or any were.All want the best signal if you do this then it's not possible because it does't catch the internet signal, you’ll need it out in the open, free of any walls and interference. then Point the antennas perpendicularly, and elevate the router if you can (one reader found that his attic was the perfect spot). Lastly, make sure its in the center of your house, so you have the best coverage possible throughout your home.

Find a Right wi fi Channel

If you have any neighbors and their routers may be interfering with your router and causing the signal to degrade. Wireless routers can operating on a number of different channels, and you want yours on a channel with as little interference as possible. Then Use a tool like Wi-Fi Stumbler or Wi-Fi Analyzer to find the perfect channel in your house or office.

Increc your wifi range with DIY Method

If your router still won’t reach far enough, you can @boost its range with simple DIY tricks. Our favorite is the Windsurfer tin foil hack, though you can also use an old beer can or a cooking strainer to @boost your router’s range. The results want necessarily be mind blowing, but you should be able to eke a bit more distance out of your Wi-Fi network with minimal effort.

Check Your speed

Although most people can gauge if their home wireless is working too slow or not, checking the speed of the connection will let you know for be sure whether you are within range of the speed promised by your Cisco Router. Downloading a lightweight piece of software like LAN Speed Test gives you upload and download speed numbers in megabits per second (mbps), which you can check against your ISP’s promised speed to see if your network is really slow or if you just need to pay for faster service. You’ll probably need to run the test multiple times and at different times of the day to get a real sense of how fast your Wi-Fi is overall, as crowding on the 2.4GHz spectrum could cause slowdown during the busiest times of the day for Internet traffic.

Change Your Wi-Fi Router Channel to Optimize Your Wireless Signal

If you live in an apartment complex you were probably noticed more than just the passive-aggressive network IDs that your neighbors use—very likely you’ve had problems with your wireless connections dropping out, or just not being as fast as you’d like. Here’s a quick fix.
If your wireless speed is very slow than it should be, you can try manually adjusting the broadcast channel to find one with fewer wireless routers competing for space. If your router is relatively new and automatically chooses which channel to broadcast from, then you won't get too much use out of pinning your wireless down to a single channel, but for older routers it’s worth consider into.
First you will want to go into the router’s graphical user interface (GUI), by typing the router/gateway address into the address bar in a browser window while your computer is connected to the Cisco router wired or wireless network. You can usually find the router’s address on the router itself, in the instruction manual, or online if all else fails. For example, if you have a Cisco router D-Link router, you’ll type http://192.168.0.1; if you have a Linksys, you’d type http://192.168.1.1. The browser will prompt you to enter your user name and password.
The exact navigation through the GUI for each router is different, but once you find the router’s wireless options (usually under headings like “LAN” or “Network”), you should see a “wireless channel” option. In North America, you can broadcast from channels 1, 6, and 11. Try switching to one of those three channels that’s not currently in use and see if it speeds things up.

Cisco Router Technical Support

Our Cisco router Customer Service center techies well understands well Skilled in solve client issues and provides an Cisco router technical Help. First we understand to a user what an exact technical problem that you have, and then we provide a troubleshoot method for Cisco router device.if you want to Ask expert suggestion through calling at Cisco router tech Support Contact and find out superior services for Cisco router. Hence our technical experts are well specialize in resolving all sorts of glitches on a current time and provide best services through call,discussion. 
we have highly skilled tech support team that can fix all the issues that you generally face with your Cisco router. All your issues are handled by our certified technicians in an appropriate manner. Our Cisco Router Customer Support is available 24/7 365 Days and you can approach us for resolving your problems at any time of the day. Some of the support service offered by us for Cisco routers is as follows.
We help to resolve the issues related to Wired and wireless Cisco routers.Our expert technicians help in installing the latest available Cisco router driver.We even offer technical support for trouble shooting the broken DNS relay function.
We even resolve the problems related to the wireless connection.Our highly experienced technicians solve the issues concerned with the Router Firewall.We even offer support service for carrying out general troubleshooting of the Cisco routers.
The team of talented technicians resolves issues concerned with the interference in the network channel.We offer complete solutions for the problems of the Cisco routers.Our technicians mesh the Cisco routers with your systems.We also provide support service to configure your driver settings of your existing system to accommodate the Cisco router.Our engineers properly help you to set up WAN and LAN settings.We tend to pull up your internet speed by troubleshooting your router as needed.
Our skilled technicians also work on resolving the prevailing compatibility problems between your system and the Cisco router.
So, whenever you happen to face any issue with functioning of your Cisco router, all you need to do is simply give us a call at 18886764496 on our toll-free number and our Cisco Router Customer Service is always available at your service to resolve the regarding issues. Our technical assistance is available for our clients at any time of the day and throughout the year.
Cisco Router Technical Support Phone Number - 1/888/676/4496
And You also go through with this link Cisco Router Customer Service