Create a loopback device and assign IP

    apt-get install uml-utilities
    
    modprobe tun
    tunctl

    This has created a new interface ‘tap0’.
    Assign an IP and bring up the new interface

    ifconfig tap0 10.10.10.100 netmask 255.255.255.0 up

    Leave a Reply