# # For running this script on Linux in your private network there is some # preparation required. Let's assume 'eth0' is your physical network device # (run 'ifconfig' for that), 'shrimp' is your Linux user name, and # 192.168.178.1 is the IP of a device in your local network you want to ping. # You would do the following: # # 1) Establish a bridge between a TAP device and a physical network device in # your Linux: # ! sudo brctl addbr br0 # ! sudo ip addr flush dev eth0 # ! sudo brctl addif br0 eth0 # ! sudo ip tuntap add tap0 mode tap user shrimp # ! sudo brctl addif br0 tap0 # ! sudo ifconfig eth0 up # ! sudo ifconfig tap0 up # ! sudo ifconfig br0 up # ! brctl show # ! sudo dhclient -v br0 # # 2) Now you can do testing with the script: # ! cd /build/x86_64 # ! make run/ping KERNEL=linux BOARD=linux ON_LINUX_WITH_DST_IP=192.168.178.1 # # 3) Clean up your Linux when done testing: # ! sudo brctl delif br0 tap0 # ! sudo ip tuntap delete tap0 mode tap # ! sudo brctl delif br0 eth0 # ! sudo ifconfig br0 down # ! sudo brctl delbr br0 # ! sudo ifconfig eth0 up # ! sudo dhclient -v eth0 # source ${genode_dir}/repos/os/run/assert_nic.inc set on_linux_with_dst_ip "" catch {set on_linux_with_dst_ip $::env(ON_LINUX_WITH_DST_IP)} set on_linux [expr ![string equal $on_linux_with_dst_ip ""]] if {[expr [have_spec linux] && !$on_linux]} { puts "You must set 'on_linux_with_dst_ip' in the run script if you want to run on Linux." exit 0 } if {[expr ![have_spec linux] && $on_linux]} { puts "You must run on Linux if 'on_linux_with_dst_ip' in the run script is set." exit 0 } set on_hardware [expr ![have_include power_on/qemu]] set second_ping_via_udp [expr $on_hardware && !$on_linux] create_boot_directory import_from_depot [depot_user]/src/[base_src] \ [depot_user]/pkg/[drivers_nic_pkg] \ [depot_user]/src/init \ [depot_user]/src/report_rom \ [depot_user]/src/nic_router build { app/ping } proc dst_ip { } { global on_linux_with_dst_ip global on_linux if {$on_linux} { return $on_linux_with_dst_ip } global on_hardware if {$on_hardware} { return "10.0.0.2" } else { return "10.0.2.2" } } append config { } append_if $second_ping_via_udp config { } append config { } install_config $config build_boot_image [build_artifacts] append qemu_args " -nographic " append_qemu_nic_args set done_string ".*\"ping_1\" exited with exit value 0.*\n" append_if $second_ping_via_udp done_string ".*ping_2\] From [dst_ip] Destination Unreachable.*\n" proc test_timeout { } { if {[have_spec sel4] && [have_board pc]} { return 60 } return 30 } run_genode_until $done_string [test_timeout]