Displaying 5 results from an estimated 5 matches for "dpserver001".
2016 Jan 08
1
Troubleshooting on OS X
...! It's alive! For others who are having problems, this is
a summary of the differences I needed between Linux and OS X:
You'll need to install http://tuntaposx.sourceforge.net/ manually.
On tinc.conf:
> Linux
Name = ntwigg2014linux
AddressFamily = ipv4
Interface = dpsfVPN
ConnectTo = dpserver001
> Mac
Same, but remove the Interface line entirely
On tinc-up:
> Linux
ifconfig $INTERFACE 10.0.0.12 netmask 255.255.255.0
> Mac
ifconfig $INTERFACE 10.0.0.12/24 10.0.0.100 ; 10.0.0.100 is dpserver001
above
route add -net 10.0.0.0 10.0.0.12 255.255.255.0
With the files above, I can ping...
2016 Jan 07
2
Troubleshooting on OS X
...> sudo tincd -n dpsf -D -d3
tincd 1.0.21 (Feb 3 2015 20:09:36) starting, debug level 3
/dev/tun0 is a Generic BSD tun device
Executing script tinc-up
ifconfig: interface dpsfVPN does not exist
Script tinc-up exited with non-zero status 1
Listening on 0.0.0.0 port 655
Ready
Trying to connect to dpserver001 (71.202.38.86 port 655)
Connected to dpserver001 (71.202.38.86 port 655)
Sending ID to dpserver001 (71.202.38.86 port 655)
... (lots of stuff, but I can't ping through the VPN)
So then I tried changing the interface in my conf.vpn to tun0, but then I
get
> sudo tincd -n dpsf -D -d
tincd 1....
2016 Jan 07
3
Troubleshooting on OS X
...-n dpsf -D -d3
tincd 1.0.21 (Feb 3 2015 20:09:36) starting, debug level 3
Could not open /dev/tun0: No such file or directory
Terminating
And here's the contents of my files in /opt/local/etc/tinc:
> dpsf/tinc.conf
Name = ntwigg2009mac
AddressFamily = ipv4
Interface = dpsfVPN
ConnectTo = dpserver001
> dpsf/tinc-up
#!/bin/sh
ifconfig $INTERFACE 10.0.0.13 netmask 255.255.255.0
> dpsf/tinc-down
#!/bin/sh
ifconfig $INTERFACE down
I followed the port instructions to the T. Any tips are greatly
appreciated!
I don't know much (anything) about tun/tap, but from googling, I know that
tun...
2016 Jan 07
0
Troubleshooting on OS X
...cd 1.0.21 (Feb 3 2015 20:09:36) starting, debug level 3
> /dev/tun0 is a Generic BSD tun device
> Executing script tinc-up
> ifconfig: interface dpsfVPN does not exist
> Script tinc-up exited with non-zero status 1
> Listening on 0.0.0.0 port 655
> Ready
> Trying to connect to dpserver001 (71.202.38.86 port 655)
> Connected to dpserver001 (71.202.38.86 port 655)
> Sending ID to dpserver001 (71.202.38.86 port 655)
> ... (lots of stuff, but I can't ping through the VPN)
>
> So then I tried changing the interface in my conf.vpn to tun0, but then I get
>
> >...
2016 Jan 07
0
Troubleshooting on OS X
...ry running the following
command:
kextload /Library/Extensions/tun.kext/
Then try to start tinc again.
> And here's the contents of my files in /opt/local/etc/tinc:
>
> > dpsf/tinc.conf
> Name = ntwigg2009mac
> AddressFamily = ipv4
> Interface = dpsfVPN
> ConnectTo = dpserver001
>
> > dpsf/tinc-up
> #!/bin/sh
> ifconfig $INTERFACE 10.0.0.13 netmask 255.255.255.0
>
> > dpsf/tinc-down
> #!/bin/sh
> ifconfig $INTERFACE down
All that looks OK.
> > sudo launchctl load -w
> /Library/LaunchDaemons/org.macports.tuntaposx.plist
> /opt/l...