6

I have a VPN connection set up on my OS X machine, and when I run ifconfig in the terminal I get the following response:

utun0: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1500
    inet 10.8.0.6 --> 10.8.0.5 netmask 0xffffffff 

Can someone help me understand what the --> symbol means?

clcain
  • 113
  • 7

1 Answers1

2

Most likely the default gateway for that interface. TUN connections usually are p2p connections, which mean they are composed of a range with just 2 IPs, the gateway and the IP address.

You can verify that running route -n and seeing that the default gateway for your tun interface is indeed 10.8.0.5.

nKn
  • 5,549
  • 6
  • 32
  • 38
  • 1
    Thanks for your response. It looks like 10.8.0.5 is indeed my default gateway, though I had to use `netstat -rn` to view the routing table on OS X. – clcain Oct 19 '15 at 14:36