aboutsummaryrefslogtreecommitdiff
path: root/cmd/vrouter
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/vrouter')
-rw-r--r--cmd/vrouter/main.go49
1 files changed, 34 insertions, 15 deletions
diff --git a/cmd/vrouter/main.go b/cmd/vrouter/main.go
index cde49a8..02104c5 100644
--- a/cmd/vrouter/main.go
+++ b/cmd/vrouter/main.go
@@ -10,57 +10,61 @@ import (
)
func main() {
+ // checks that a config file is passed as an argument
if len(os.Args) == 1 {
fmt.Printf("Usage: %s <configFile>\n", os.Args[0])
os.Exit(1)
}
+ // get config file name from command line argument
fileName := os.Args[2]
+ // initialize the router with its config file
err := ipstack.Initialize(fileName)
if err != nil {
+ // return if there is an error
return
}
+
+ // register the test protocol
ipstack.RegisterProtocolHandler(ipstack.TEST_PROTOCOL)
+ // register the rip protocol for the router
ipstack.RegisterProtocolHandler(ipstack.RIP_PROTOCOL)
- // TODO @ MICHAEL: Dont know why its not running instantly
- //go func() {
- // for {
- // ipstack.RequestRip()
- // // takes time to compute I think
- // // TODO @ MICHAEL
- // time.Sleep(2 * time.Second)
- // }
- //}()
-
- // TODO @ MICHEAL
- // go ipstack.CheckAndUpdateRoutingTable()
-
+ // create a scanner to read from stdin for command-line inputs
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
line := scanner.Text()
switch line {
+ // print the interfaces
case "li":
fmt.Println("Name\tAddr/Prefix\tState")
fmt.Println(ipstack.SprintInterfaces())
+ // print the neighbors
case "ln":
- fmt.Println("Iface\tVIP\tUDPAddr")
+ fmt.Println("Iface\tVIP\t\tUDPAddr")
fmt.Println(ipstack.SprintNeighbors())
+ // print the routing table
case "lr":
- fmt.Println("T\tPrefix\tNext Hop\tCost")
+ fmt.Println("T\tPrefix\t\tNext Hop\tCost")
fmt.Println(ipstack.SprintRoutingTable())
+ // exit the program
case "q":
ipstack.CleanUp()
os.Exit(0)
+ case "exit":
+ ipstack.CleanUp()
+ os.Exit(0)
default:
if len(line) > 4 {
+ // disable an interface
if line[:4] == "down" {
ifaceName := line[5:]
ipstack.InterfaceDownREPL(ifaceName)
}
+ // attempts to send message to destination
if line[:4] == "send" {
// get IP address and message that follows it
IPAndMessage := strings.Split(line, " ")
@@ -71,15 +75,19 @@ func main() {
messageToSend := strings.Join(message, " ")
messageToSendBytes := []byte(messageToSend)
+ // get the longest prefix match for the destination
hop, err := ipstack.LongestPrefix(netip.MustParseAddr(ipAddr))
if err != nil {
fmt.Println(err)
continue
}
+
myAddr := hop.Interface.IpPrefix.Addr()
+ // attempt to send the message to the destination
for _, neighbor := range ipstack.GetNeighbors()[hop.Interface.Name] {
if neighbor.VipAddr == netip.MustParseAddr(ipAddr) ||
neighbor.VipAddr == hop.VIP {
+ // send the message to the neighbor
bytesWritten, err := ipstack.SendIP(&myAddr, neighbor, ipstack.TEST_PROTOCOL, messageToSendBytes, ipAddr, nil)
if err != nil {
fmt.Println(err)
@@ -91,11 +99,22 @@ func main() {
}
}
if len(line) > 2 {
+ // enable an interface
if line[:2] == "up" {
// get interface name
ifaceName := line[3:]
ipstack.InterfaceUpREPL(ifaceName)
}
+ } else {
+ fmt.Println("Invalid command: ", line)
+ fmt.Println("Commands: ")
+ fmt.Println(" exit/q Terminate this program")
+ fmt.Println(" li List interfaces")
+ fmt.Println(" lr List routes")
+ fmt.Println(" ln List available neighbors")
+ fmt.Println(" up Enable an interface")
+ fmt.Println(" down Disable an interface")
+ fmt.Println(" send Send test packet")
}
continue
}