0

freebsd 10 を使用していて、tarantool 1.6 をセットアップしようとしています。pkg でインストールされ、デフォルトのサンプル インスタンスが作成されます。

cp /usr/local/etc/tarantool/instances.enabled/example.lua /usr/local/etc/tarantool/instances.enabled/example.lua

これで rc.d 経由で正常に起動しますが、ipv6 のみをリッスンしています。

# ps axu | grep tar
tarantool 32878   0.0  1.2 1086608   9004  -  Is    1:40PM      0:00.05 tarantool example.lua <running> (tarantool)

# sockstat -l | grep tar
tarantool tarantool 32878 10 tcp6   *:3301                *:*
tarantool tarantool 32878 16 stream /var/run/tarantool/example.control

ipv6 のみをリッスンするのは少し奇妙*:3301です。インスタンス構成ファイルにリッスン IP またはプロトコルを設定するオプションがありません。

# grep -i -e listen -e port -e host /usr/local/etc/tarantool/instances.enabled/example.lua
    -- The read/write data port number or URI
    listen = 3301;
--        { uri = [[host1.com:4301]]; zone = [[0]]; };
--        { uri = [[host2.com:4302]]; zone = [[1]]; };

これは私が持っているものifconfigです:

# ifconfig 
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> metric 0 mtu 16384
        options=600003<RXCSUM,TXCSUM,RXCSUM_IPV6,TXCSUM_IPV6>
        inet6 ::1 prefixlen 128 
        inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 
        inet 127.0.0.1 netmask 0xff000000 
        nd6 options=21<PERFORMNUD,AUTO_LINKLOCAL>
xn0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
        options=503<RXCSUM,TXCSUM,TSO4,LRO>
        ether 00:16:3e:9b:b0:8b
        inet x.x.x.x. netmask 0xffffff00 broadcast x.x.x.x
        nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
        media: Ethernet manual
        status: active

問題は、IPv4 リッスンをセットアップする方法と、リッスンするアドレスのリストを制限する方法です。

4

1 に答える 1