This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Binding IPv6 to Eggdrops

General support and discussion of Eggdrop bots.
Post Reply
L
Landslyde
Halfop
Posts: 46
Joined: Thu May 01, 2014 6:01 pm

Binding IPv6 to Eggdrops

Post by Landslyde »

I'm here because i don't believe it's a server issue. On my dedicated server, I have two third-level domain names that I use on two of my v1.8 bots:

Code: Select all

nslookup 2607:5300:60:9e65:a1:b2:c3:d4
Server:         127.0.0.1
Address:        127.0.0.1#53

Non-authoritative answer:
4.d.0.0.3.c.0.0.2.b.0.0.1.a.0.0.5.6.e.9.0.6.0.0.0.0.3.5.7.0.6.2.ip6.arpa        name = sw33tf3m.xtremeirc.net

Code: Select all

nslookup 2607:5300:60:9e65:a1:b2:c3:e5
Server:         127.0.0.1
Address:        127.0.0.1#53

Non-authoritative answer:
5.e.0.0.3.c.0.0.2.b.0.0.1.a.0.0.5.6.e.9.0.6.0.0.0.0.3.5.7.0.6.2.ip6.arpa        name = angelica.xtremeirc.net
The rdns is working.

In the .conf for sw33tf3m, I have her set up like this:

Code: Select all

#set vhost4 "virtual.host.com"
#set vhost4 "149.56.155.72"

#set vhost6 "my.ipv6.host.com"
set vhost6 "IPv6: 2607:5300:60:9e65:a1:b2:c3:d4"

#set listen-addr "149.56.155.72"
set listen-addr "IPv6: 2607:5300:60:9e65:a1:b2:c3:d4"
#set listen-addr "virtual.host.com"

set prefer-ipv6 1
And in the other bot's conf:

Code: Select all

#set vhost4 "virtual.host.com"
#set vhost4 "149.56.155.72"

#set vhost6 "my.ipv6.host.com"
set vhost6 "IPv6: 2607:5300:60:9e65:a1:b2:c3:e5"

#set listen-addr "99.99.0.0"
set listen-addr "IPv6: 2607:5300:60:9e65:a1:b2:c3:e5"
#set listen-addr "virtual.host.com"

set prefer-ipv6 1
On IRC, the bots show this:

Code: Select all

Angelica [~angel@angelica.xtremeirc.net] has joined #channel
Sw33tf3m [~lilAngel@angelica.xtremeirc.net] has joined #channel
For some reason, Sw33tf3m is using the same host as the first bot.

Can someone help me resolve this issue? Thanks.
User avatar
Arnold_X-P
Master
Posts: 226
Joined: Mon Oct 30, 2006 12:19 am
Location: DALnet - Trinidad - Beni - Bolivia
Contact:

Re: Binding IPv6 to Eggdrops

Post by Arnold_X-P »

set listen-addr "IPv6: 2607:5300:60:9e65:a1:b2:c3:d4"

it is not necessary that it already specifies the configuration recognizes it as such IPv6
try with

Code: Select all

#set vhost4 "virtual.host.com"
#set vhost4 "149.56.155.72"

#set vhost6 "my.ipv6.host.com"
set vhost6 "2607:5300:60:9e65:a1:b2:c3:e5"

#set listen-addr "99.99.0.0"
set listen-addr "2607:5300:60:9e65:a1:b2:c3:e5"
#set listen-addr "virtual.host.com"

set prefer-ipv6 0
.:an ideal world:. www.geocities.ws/chateo/yo.htm
my programming place /server ix.scay.net:7005
L
Landslyde
Halfop
Posts: 46
Joined: Thu May 01, 2014 6:01 pm

Post by Landslyde »

Arnold_X-P:

I made that change, but no dice. The situation remains the same.

Do you have another suggestion?

Thanks.
User avatar
Arnold_X-P
Master
Posts: 226
Joined: Mon Oct 30, 2006 12:19 am
Location: DALnet - Trinidad - Beni - Bolivia
Contact:

Re: Binding IPv6 to Eggdrops

Post by Arnold_X-P »

Remember also disable set my-hostname & set my-ip

[15:20] * Dns resolving angelica.xtremeirc.net
-
[15:20] * Dns resolved angelica.xtremeirc.net to 149.56.155.72

try with

Code: Select all

#set my-hostname "turbous.xshellz.com"
#set my-ip "158.69.187.140"

#set vhost4 "virtual.host.com"
#set vhost4 "149.56.155.72"

#set vhost6 "my.ipv6.host.com"
set vhost6 "2607:5300:60:9e65:a1:b2:c3:e5"

#set listen-addr "99.99.0.0"
set listen-addr "149.56.155.72"
#set listen-addr "virtual.host.com"

set prefer-ipv6 0
.:an ideal world:. www.geocities.ws/chateo/yo.htm
my programming place /server ix.scay.net:7005
Post Reply