answersLogoWhite

0

What else can I help you with?

Related Questions

How do you release and renew your ip address in Linux computer?

Below are two different methods of how this can be done at the command line. ifconfig eth0 downRunning the above command would take the eth0 interface (the first network card) down. Which is the same as releasing the IP address from that network card.ifconfig eth0 upAfter the interface is taken down, typing in the above command would bring that interface back up.ordhclient eth0Renews the IP address assigned to it by DHCP.


What command would you use to verify that port security is active on an interface?

sho port-security int fa0/6


Why is Unix called a command interpreter?

Unix and Unix-like systems would be referred to as command interpreters because of the nature of their interface. These systems are interacted with via a shell (i.e. Bash), which is a 'command-line interface' where the user types in text commands and they are executed by the system. This is in contrast with modern operating systems where the primary method of interaction is via a 'graphical user interface' or GUI, where the system is represented with graphics (like windows, cursors, toolbars etc.). These modern OS's still include command-line interfaces, like Command Prompt in Windows and the Terminal in OSX.


When would you configur a GRE tunnel?

To configure a GRE tunnel, create a tunnel interface by issuing the interface tunnel command from the global configuration mode. To configure the tunnel source and destination, issue the tunnel source {ip-address | interface-type} andtunnel destination {host-name | ip-address} commands under the interface configuration mode for the tunnel.


What is Command line and GUI operating System?

The term "command line interface' is not actually used to describe an operating system, but a type of shell around an operating system. A command line interface is an interface in which you enter commands, arguments and parameters as your primary method of running programs or doing work. Depending on the operating system, the CLI may be the primary method of interfacing with the operating system. Linux (And most Unix/Unix-like systems.) can be primarily CLI driven or GUI driven, since shells are treated as just another application in those systems.


Can you give me a sentence for the word command?

It would be unwise to decline a command performance. Ground Control, this is Mission Command -Do you copy? By your command, my liege!


How would a technician permanently change the IP address of an Ethernet card on a Red Hat Linux PC?

Command to change the IP address on Linux is ifconfig.Run ifconfig to find the interface name for the connected Ethernet card. If there is only on ethernet card present on your system then the interface name would be eth0. If there are more than one Ethernet cards present on your machine then they interface names will be ethn.Once you have figurred out the interface name then ifconfig command can be used to modify the IP address$ ifconfig eth0 upeg$ ifconfig eth0 192.168.1.100 upWould assign new IP address to eth0


What is the difference between a command-line and a graphical user interface?

Command line interface is completely command controld ,flow of program controls by giving commands. so user have to familiar with commands. a novice user can not operate a CUI environment. In Graphical user interface user interact to a visual environment like buttons, icons, images. so it is easy to use and a novice user can operate it without pre trainig.


What does a terminal emulator allow you to do from GUI that you would not be able to do without one?

A terminal emulator emulates a terminal in a graphical environment. It provides a command line interface from which you can give shell commands, which you cannot do otherwise from a GUI (other than by using Run Command from the Main menu).


Your speedo stopped working on your Chrysler voyager le 2000 plus it is not clocking up any miles?

i would just check the vss(vehicale speed sensore) more then likely that's it as long as the rest of the cluster works and your fuses are good i just change that then spend the money to take it in


When do you need to configure a clock rate on a router interface?

When it needs to provide clocking for the serial line. This occurs when you are using a null-modem cable in a lab. You would apply the clock rate to the router that is connected as the DCE device.


Why would you want to disable CDP on an interface or globally?

You don't want to allow adjacent devices to gain information about this router for security reasons.SolutionYou can disable CDP on a single interface by using the command no cdp enable interface configuration command: Router1#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router1(config)#cdp runRouter1(config)#interface FastEthernet0/0 Router1(config-if)#no cdp enableRouter1(config-if)#end Router1#And you can disable all CDP on the router with the global configuration command, no cdp run: Router1#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router1(config)#no cdp runRouter1(config)#end Router1#