On Sat, 25 Aug 2018 14:20:44 +0300 Alexander Kapshuk
<[email protected]> wrote:
> I am trying to follow the instructions given here:
>
> http://fqa.9front.org/fqa3.html#3.3.1.4.4
> 3.3.1.4.4 - Linux TAP
>
> Here's what I've done so far:
> (1). Set up a tap0 device as user root:
> ip tuntap add dev tap0 mode tap user sasha
> ip address add 10.0.0.1/24 dev tap0
>
> ip addr show dev tap0
> 4: tap0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group
> default qlen 1000
> link/ether c6:1c:63:d9:91:1d brd ff:ff:ff:ff:ff:ff
> inet 10.0.0.1/24 scope global tap0
> valid_lft forever preferred_lft forever
I see that tap0 state is DOWN. Try bringing it up.
If that still doesn't work, run
tcpdump -ni tap0
and tell us what you discover.