interface
Feed Demon 4.0.0.11 Beta- A great way to view and manage your RSS feeds from your desktop
Feed Demon 4.0.0.11 Beta is the most popular Windows RSS reader in the market today. It is a great way to view and manage your RSS feeds from your desktop. Bring the power of RSS right to your Windows desktop with FeedDemon News Aggregator: Get your news and information instantly. Customize the way you read and [...]
How to get the realtime traffic of a Cisco IOS Interface
The show traffic command lists the number of packets and bytes moving through each interface. The number of seconds is the duration the PIX Firewall has been online since the last reboot. The clear traffic command clears counters for the show traffic command output. see the below Example: quik# show traffic Outside: received (in 240088.520 secs): 6221279 packets 3507947754 [...]
How to Configure interface automatically with DHCP in Solaris
Solaris can request IP address and other networking information dynamically with DHCP. To permanently make an interface, for example hme0, obtain its IP address through DHCP, use the touch command to create the following two empty files as root: touch /etc/dhcp.hme0 touch /etc/hostname.hme0 When you reboot, the interface will be dynamically configured. To bring up [...]
How to Disable Routing updates on interfaces of Cisco Routers
When we configure a routing protocol on Cisco IOS Routers, it is important to consider preventing Routing updates sent on interfaces that are not required to (say a LAN where there is no other router in the segment to receive any updates). This ensure we are not passing updates that could cause network issues. Needless [...]
How to configure Standard Access Control List on Cisco router
ACLs in Cisco IOS can be used to control traffic flow and to use it as a simple list to define another function like NATing or Route-Maps. Standard Access List (ACL) in Cisco IOS are the simplest and oldest type of ACLs. Standard ACLs simply compare the Source IP Address on the packet against the [...]
How to Configure PAT on the outside interface in Cisco Asa
Configure PAT on the outside interface ASA5505(config)# global (outside) 1 interface ASA5505(config)# nat (inside) 1 0.0.0.0 0.0.0.0
How to Enable and Disable interface in Cisco Router
To Enable an interface Router(config-if)#no shutdown To disable an interface Router(config-if)#shutdown
How to Set up the virtual hosts for https
For an SSL encrypted web server you will need a few things. Depending on your install you may or may not have OpenSSL and mod_ssl, Apache’s interface to OpenSSL. Use yum to get them if you need them. yum install mod_ssl openssl Yum will either tell you they are installed or will install them for you. [...]
How to Configure Virtual IP Address in Linux
Invoke the linuxconf tool. ( type linuxconf in the shell prompt and press Enter ). For starting this tool you have to be logged in as Super user. In the displayed menu, select the menu item : IP Aliases for virtual hosts and press Enter. This will display the two interfaces eth0 and lo. (Ethernet [...]
How to Check the ARP Tables in Linux
On some occasions, it is useful to view or alter the contents of the kernel’s ARP tables, for example when you suspect a duplicate Internet address is the cause for some intermittent network problem. The arp tool was made for situations like this. Its command-line options are: arp [-v] [-t hwtype] -a [hostname] arp [-v] [-t hwtype] [...]
How to use netstat Command for checking your network configuration and activity
netstat is a useful tool for checking your network configuration and activity. It is in fact a collection of several tools lumped together. We discuss each of its functions in the following sections. When you invoke netstat with the –r flag, it displays the kernel routing table in the way we’ve been doing with route. On vstout, it produces: # netstat -nr [...]
How to Use ifconfig in Linux to configure your network
Entering ifconfig at the command line interface without specifying any options will provide a fairly complete description of the current state of all active network interfaces. For instance, on a machine with hostname erebus, entering ifconfig at the command line might return the following output: eth0     Link encap:Ethernet HWaddr 00:C0:F0:77:FD:AD           inet addr:192.168.2.103 Bcast:192.168.2.255 Mask:255.255.255.0          inet6 addr: fe80::2c0:f0ff:fe77:fdad/64 [...]
How to use Ifconfig Command in Linux
Ifconfig is used to configure the kernel-resident network interfaces. It is used at boot time to set up interfaces as necessary. After that, it is usually only needed when debugging or when system tuning is needed. To get a quick look at all the network cards on your system that are ‘up’ (meaning they are [...]
