This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @file console.h | |
* @brief Function prototypes for the console driver. | |
* | |
* This contains the prototypes for the console | |
* driver and eventually any macros, constants, | |
* or global variables you will need. | |
* | |
* @author Harry Q. Bovik (hqbovik) | |
* @author Fred Hacker (fhacker) | |
* @bug No known bugs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zebrad# show ip route | |
Codes: K - kernel route, C - connected, S - static, R - RIP, | |
O - OSPF, I - IS-IS, B - BGP, A - Babel, | |
> - selected route, * - FIB route | |
K>* 0.0.0.0/0 via 192.168.1.254, eth4 | |
R>* 10.1.1.0/24 [120/2] via 10.1.2.2, eth1, 00:00:28 | |
C>* 10.1.2.0/24 is directly connected, eth1 | |
C>* 10.1.3.0/24 is directly connected, eth0 | |
C>* 127.0.0.0/8 is directly connected, lo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> cat /var/run/ripd.pid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> ./ripd -d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
router rip | |
network 10.1.3.0/24 | |
network eth0 | |
network 10.1.2.0/24 | |
network eth2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> ./zebra -d -u root -f /mnt/conf/zebra.conf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! | |
! Example zebra configuration | |
! | |
hostname zebrad | |
password zebra | |
! | |
interface eth5 | |
ip address 10.10.1.1/24 | |
! | |
interface eth7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> ./configure --enable-user=root --enable-group=root | |
>> make |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> tar -xvzf quagaa.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Server | |
>> iperf -u -s -w 1 -l 12 | |
# Client | |
>> iperf -u -c node4 -w 1 -l 12 |