Changes between Initial Version and Version 2 of Ticket #1194
- Timestamp:
- 2015-02-01T04:16:41Z (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1194 – Description
initial v2 1 BitlBee doesn't seem to be able to bind to more than one IP address on OpenBSD. My 'bitlbee.conf' contains the following line: 'DaemonInterface = 127.0.0.1'. The host 'localhost' is specified in '/etc/hosts' as follows:1 BitlBee doesn't seem to be able to bind to more than one IP address on OpenBSD. My 'bitlbee.conf' contains the following line: 'DaemonInterface = localhost'. The host 'localhost' is specified in '/etc/hosts' as follows: 2 2 3 {{{ 3 4 $ cat /etc/hosts 4 5 127.0.0.1 localhost 5 6 ::1 localhost 7 }}} 6 8 7 9 Now if I start Bitlbee the expected result is that the servers binds to 127.0.0.1:6667 and [::1]:6667 but unfortunately it only binds to the IPv6 Address ([::1]:6667). 8 10 11 {{{ 9 12 $ netstat -na -p tcp | grep LISTEN | grep 6667 10 13 tcp6 0 0 ::1.6667 *.* LISTEN 14 }}} 11 15 12 16 I believe that this is a bug and not a feature, because it seems to be impossible to make BitlBee listen on an IPv6 and IPv4 address simultaneously.