| Webproworld Forum Posts |
VB Help needed
I am taking a class and haven't done any programming before. I am trying to edit a calculation program to allow a user to continue in the program when a "system.overflow.exception" occurs without changing my variable type. I have tried using a try/catch and if > neither are working.
Is there a way to find out domains attached to an IP?
I wanted to know if there's a way to find out what domains are associated with a particular IP address. Specifically, I'm trying to find out if one of the sites on my hosting server have been banned by either Yahoo or Google or both.
Permissions in windows 2003 server
Is there a good way to keep users from deleting files. I set the user account to deny delete and delete of subfolders and files, but the problem then becomes that they can not save a file back over the top of it self. Anyone know how to break the permissions out on this one. The other option is possibly some way to retain the deleted files - like in the recyle bin. Any info on this would be greatly appreciated.
|
 |
| Recent
Articles |
Microsoft Newly Certifiable
Microsoft announced on Tuesday the launch of a new three-tiered certification system that provides training and credentials. The new certifications for Technology Specialist, IT Professional and Certified Architect are updated to reflect the changing IT environment.
Gates Ushers In Golden Age Of Computers
Microsoft chairman and CEO Bill Gates announced the "golden age of computers" at a recent Princeton University award ceremony honoring world-changing figures. Gates intimated to a crowd of about 1,000 students the future...
Do You Go With A Dedicated Server Or Not?
For many businesses, finding solutions in dedicated server options is difficult. This is mainly the case because individuals do not know what they are looking at or looking for.

The Cost of Linux
Matt Asay's AC/OS blog says that one of the "expenses" noted in Microsoft TCO studies is the cost of training.
Windows vs. Unix - the Forgotten Facts (An Opinion)
"Windows Beat Unix, But It Won't Beat Linux" makes some valid points, but I think it leaves out one very important thing.
When All Other Explanations Fail..
An article in Wired titled Mind over Matter discusses some researchers who claim that human thought can have effects upon physical events - such as falling ping pong balls and other things.
|
|
|
|
11.10.05 Router Modes
By
Chris Bryant
When you're getting started on your CCNA studies, learning the different router modes is key to passing your Intro and ICND exams.
But keeping those modes straight can be very difficult. (At least it was for me!) Let's take a look at the various router modes you'll need to know about to pass your CCNA, and use IOS Help to illustrate the different uses of each mode.
The first mode you'll see on a router (if the person before you logged off as they should have) is user exec mode. This is also the default mode a user is placed into when using Telnet to connect to a router. The prompt will look like this:
R1>
You can't write or add to a configuration in this mode, but you can run quite a few show commands. This is a good mode to have users in who need to see the configuration, but shouldn't be allowed to change it.
To get to the next level, type enable at the user exec prompt:
R1>enable
R1#
Notice that the prompt changed. This mode has two names, the official one being privileged exec mode. It's more commonly referred to as enable mode, since "enable" is what you type to get into this mode.
This mode gives you more options for show and other commands, but you still can't configure anything. To configure global commands, use "configure terminal", or "conf t", to enter global configuration mode.
R1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#
The prompt has changed again, and now global configuration commands such as hostname and no ip domain-lookup can be entered.
From here, you've got a lot of options, but we'll look at three you need to know for your CCNA exams. To apply configuration commands to an interface, enter interface configuration mode, as shown here:
R1(config)#interface serial0
R1(config-if)#
You must be in global config mode to get into interface config mode you cannot go from enable mode straight to interface configuration mode.
R1#interface serial0
^
% Invalid input detected at '^' marker.
Interface configuration mode allows you to apply an IP address to the interface, as well as many other commands related to frame relay, ISDN, and dynamic routing protocols.
For the CCNA, you need to know about two other configuration modes. To configure console commands (such as password protection), enter line configuration mode as shown here:
R1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#line console 0
R1(config-line)#password cisco
R1(config-line)#login
The prompt "(config-line)" indicates that you're in line configuration mode. Your console line is not the only line you'll be configuring for the CCNA, though your vty lines are used for incoming telnet connections and must be configured in a similar fashion.
R1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#line console 0
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
Notice that you do not have to exit one interface mode to go to another one. Let's say that you've configured your vty lines and now want to put an IP address on your Ethernet interface. You don't have to go out with ctrl-z and then start again you can go straight to interface config mode from line config mode. Just make sure you see the prompt change!
R1(config-line)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#interface ethernet0
R1(config-if)#ip address 15.1.1.1 255.255.255.0
When you're preparing for CCNA exam success, there's a lot to absorb. Just take it one piece at a time, get some hands-on experience to go with your theory, and before you know it you're moving around in the different Cisco router configuration modes without giving it a second thought. Keep studying and your CCNA exam success is assured!
About the Author:
Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage (http://www.thebryantadvantage.com), home of FREE CCNA and CCNP tutorials and The Ultimate CCNA Study Package. (CCNP Study Packages are on the way!) Video courses and training, binary and subnetting help, FREE tutorials, and corporate training are also available.
For a FREE copy of my latest e-books, "How To Pass The CCNA" or "How To Pass The CCNP", send a request to chris@thebryantadvantage.com today !
|