Skip to content

An exemplifying demo

AltraMayor edited this page Oct 23, 2014 · 34 revisions

The long-term view behind Linux XIA is to crowdsource the future Internet. Accomplishing this view means (1) embracing old and new technologies, (2) lowering developing and deployment costs, and (3) nurturing a level-playing field for anyone to experiment with their ideas. The demo described in this page leverages a diverse set of technologies to substantiate this view of the future.

Our exemplifying demo show how zFilter, Digital fountain, and TCP/IP can interoperate to distribute content over XIA. zFilter is a multicast fabric developed for the PURSUIT FIA; read more about it on page zFilter principal. Digital fountain is a 15-year-old coding technology that adds reliability to open-loop multicast transmissions; see page Digital fountain. Any viable future Internet must interoperate with TCP/IP to lever all the infrastructure already deployed. To this end, our demo uses U4ID principal; see more about it on page 4ID principals.

Table of Contents

Requirements

This demo requires three machines, each with one network card, and one machine with three network cards. The former machines will be hosts, whereas the latter a router. The machines should be put together following the following topology: One can adapt this demo to run on virtual machines, but given that the intention is to present this demo in public, we have chosen to do it on real machines.

All machines must run a Linux XIA kernel, and have xiaconf package installed; see page How to install. The server and clients will need the Digital Fountain application; see page Digital fountain. The demo requires that Wireshark with XIA extensions is installed on one of the machines to inspect the traffic that the demo produces; see page Debugging the Linux kernel. The experimenter may prefer to have this Wireshark yet on a fifth machine to keep the demo isolated. The demo also requires tcpdump(8) on the router, but it is a good idea to have it installed on all machines to help with troubleshooting. On Ubuntu, tcpdump can be installed with the command:

 $ sudo apt-get install tcpdump

Setting the machines up

Once the machines are connected together, and all the software is in place, one has to assign HIDs to each machine, and enumerate the HID associated to each machine as shown below:

 ### On the router
 # xip hid new router
 # xip hid getpub router
 hid-eefa98af7649d454b9f2b704012c307ced00f87a 
 
 -----BEGIN PUBLIC KEY-----
 OMMITED
 -----END PUBLIC KEY-----
 
 ### On client A
 # xip hid new client-a
 # xip hid getpub client-a
 hid-4a17e52f5dcc9dbadf15497a52b6f3a214616cff
 
 -----BEGIN PUBLIC KEY-----
 OMMITED
 -----END PUBLIC KEY-----
 
 ### On client B
 # xip hid new client-b
 # xip hid getpub client-b
 hid-897f3aa1bb04ad9fd4022ce33678ba9accc83f3e
 
 -----BEGIN PUBLIC KEY-----
 OMMITED
 -----END PUBLIC KEY-----
 

Notice that the commands above do not assign an HID XID to the server since the server is not attached to an XIA network directly.

One only needs to execute the steps of this section once, whereas the steps in the following sections are supposed to be executed after each reboot.

Server

The server will use principals XDP, U4ID, and zFilter. XDP will create the packets, U4ID will encapsulate the XIP packets into IP/UDP payloads, and zFilter will redirect to U4ID in the second part of the demo.

The commands below set up the IP stack, load the XIA stack, and populate the routing table of XIA. All commands must be executed as root:

 # Set up IP stack
 ifconfig eth0 10.2.71.1 netmask 255.255.255.252 \
 broadcast 10.2.71.3
 
 # Loading XIA stack
 modprobe xia
 modprobe xia_ppal_xdp
 modprobe xia_ppal_u4id
 modprobe xia_ppal_zf
 
 # Populating routing table
 xip u4id add 10.2.71.1 0xc3d7 -tunnel
 xip zf addroute 1000000000000000000000000000000000000000 \
 gw u4id-0a024802c3d70000000000000000000000000000

Router

The server will use principals HID, U4ID, and zFilter. HID will forward the packets to the intend neighbor, U4ID will de-encapsulate the IP packets and handle the XIP packets to the XIA stack, and zFilter will redirect to HID.

The commands below set up the IP stack, load the XIA stack, and populate the routing table of XIA. All commands must be executed as root:

 # Set up IP stack
 ifconfig eth0 10.2.71.2 netmask 255.255.255.252 \
 broadcast 10.2.71.3
 
 # Loading XIA stack
 modprobe xia
 modprobe xia_ppal_hid
 modprobe xia_ppal_u4id
 modprobe xia_ppal_zf
 
 # Populating routing table
 xip hid addaddr router
 xip u4id add 10.2.71.2 0xc3d7
 xip zf addroute 0100000000000000000000000000000000000000 \
 gw hid-4a17e52f5dcc9dbadf15497a52b6f3a214616cff
 xip zf addroute 0010000000000000000000000000000000000000 \
 gw hid-897f3aa1bb04ad9fd4022ce33678ba9accc83f3e

Once the router is set up, one can test the IP link between server and router as follows:

 ping 10.2.71.1

A working link will show an output similar to this one:

 PING 10.2.71.1 (10.2.71.1) 56(84) bytes of data.
 64 bytes from 10.2.71.1: icmp_seq=1 ttl=64 time=0.234 ms
 64 bytes from 10.2.71.1: icmp_seq=2 ttl=64 time=0.294 ms
 64 bytes from 10.2.71.1: icmp_seq=3 ttl=64 time=0.322 ms
 ^C
 --- 10.2.71.1 ping statistics ---
 3 packets transmitted, 3 received, 0% packet loss, time 1998ms
 rtt min/avg/max/mdev = 0.234/0.283/0.322/0.039 ms

Client A

The server will use principals XDP, HID, and zFilter. XDP will deliver the packets, HID will receive the packets from the neighbors (i.e. the router), and zFilter will redirect to XDP in the second part of the demo.

The commands below load the XIA stack, and populate the routing table of XIA. All commands must be executed as root:

 # Loading XIA stack
 modprobe xia
 modprobe xia_ppal_xdp
 modprobe xia_ppal_hid
 modprobe xia_ppal_zf
 
 # Populating routing table
 xip hid addaddr client-a
 xip zf addroute 0100000000000000000000000000000000000000 \
 gw xdp-007f4e38904e83634acc7e1340ef7665e3f1f57b

Client B

The server will use principals XDP, HID, and zFilter. XDP will deliver the packets, HID will receive the packets from the neighbors (i.e. the router), and zFilter will redirect to XDP in the second part of the demo.

The commands below load the XIA stack, and populate the routing table of XIA. All commands must be executed as root:

 # Loading XIA stack
 modprobe xia
 modprobe xia_ppal_xdp
 modprobe xia_ppal_hid
 modprobe xia_ppal_zf
 
 # Populating routing table
 xip hid addaddr client-b
 xip zf addroute 0010000000000000000000000000000000000000 \
 gw xdp-007f4e38904e83634acc7e1340ef7665e3f1f57b

Once the router and clients are set up, one can test the XIP links between router and clients running the following command on the router:

 xip hid showneighs

The command above must list the HID XIDs of both client A and B like in the example below:

 to hid-4a17e52f5dcc9dbadf15497a52b6f3a214616cff
 lladdr: 00:90:f5:c6:44:5b	dev: eth2
 flags []
 
 to hid-897f3aa1bb04ad9fd4022ce33678ba9accc83f3e
 lladdr: 00:90:f5:c6:44:46	dev: eth1
 flags []

Performing the demo

TODO: Install Digital Fountain. TODO: Describe demo. TODO: Describe addresses. TODO: # tcpdump -i eth0 -w con0.dump TODO: Repeat the demo with single-XID address.