summaryrefslogtreecommitdiff
path: root/qemu-support/qemu-ifup
blob: 0feb5394a469a8fa8cc2bea124ef9d2047c7dbef (plain)
1
2
3
4
5
#!/bin/sh
   TUN_DEV=$1
   TUN_HOST=10.1.2.2
   /sbin/ifconfig $TUN_DEV $TUN_HOST
   exit 0