Penned by Thomas Schoeller on 20090902 21:50.14, we have: | hello, | | i'm trying to make a ipv4 over ipv6 tunnel, but ifconfig tells me: | | ifconfig: error in parsing address string: temporary failure in name | resolution | | when i'm issueing: | | ifconfig gif0 tunnel XX:XX:XX:0:0:0:0:1 XX:XX:XX:0:0:0:0:2 | | best regards | | thomas
hint: you're missing 'inet6'. If you're doing OpenBSD <-> OpenBSD gif(4) tunneling (or know how to bump MTU on the remote end in general) you might find that 1200 is leaving way too much overhead per packet out. Try this in /etc/hostname.gif0 on one end: mtu 1400 !ifconfig \$if inet6 tunnel XX:XX:XX:XX::1 XX:XX:XX::2 inet 10.0.0.2 255.255.255.255 dest 10.0.0.1 And this on the other: mtu 1400 !ifconfig \$if inet6 tunnel XX:XX:XX:XX::2 XX:XX:XX:XX::1 inet 10.0.0.1 255.255.255.255 dest 10.0.0.2 -- Todd Fries .. [email protected] _____________________________________________ | \ 1.636.410.0632 (voice) | Free Daemon Consulting, LLC \ 1.405.227.9094 (voice) | http://FreeDaemonConsulting.com \ 1.866.792.3418 (FAX) | "..in support of free software solutions." \ sip:[email protected] | \ sip:[email protected] \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ 37E7 D3EB 74D0 8D66 A68D B866 0326 204E 3F42 004A http://todd.fries.net/pgp.txt

