You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sharkconi edited this page Sep 18, 2016
·
3 revisions
Create macvtap network device
ip link add link < physical network device > name < macvtap network device > type macvtap mode bridge
ip link set < macvtap network device > address < mac_address > up
ifconfig < macvtap network device > promisc
Delete macvtap network device
ip link set < macvtap network device > down
ip link delete < macvtap network device >
For Example
Create macvtap network device
ip link add link ens33 name macvtap0 type macvtap mode bridge
ip link set macvtap0 address 52:53:54:55:56:57 up
ifconfig macvtap0 promisc