Feature #13803
closedAdd Socket::Ifaddr.vhid on supported platforms
Description
VHIDs are used in the failover process for interfaces using the CARP protocol. This patch adds support for getting the VHID of an interface address. Tested on FreeBSD 11.0 and FreeBSD 12.0-CURRENT
$ sudo ifconfig epair create
$ sudo ifconfig epair0a 192.0.2.2/24 vhid 99
$ irb
require 'socket'
Socket.getifaddrs[11]
=> #<Socket::Ifaddr epair0a UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST 192.0.2.2 netmask=255.255.255.0 broadcast=192.0.2.255>
Socket.getifaddrs[11].vhid
=> 99
Files
Updated by asomers (Alan Somers) over 7 years ago
- Tracker changed from Bug to Feature
- ruby -v deleted (
2.5.0dev) - Backport deleted (
2.2: UNKNOWN, 2.3: UNKNOWN, 2.4: UNKNOWN)
There was a copy/paste error in my transcript. It should've read
$ sudo ifconfig epair create
$ sudo ifconfig epair0a 192.0.2.2/24 vhid 99
$ irb
> require 'socket'
> Socket.getifaddrs[11]
=> #<Socket::Ifaddr epair0a UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST 192.0.2.2 netmask=255.255.255.0 broadcast=192.0.2.255>
> Socket.getifaddrs[11].vhid
=> 99
Updated by akr (Akira Tanaka) about 7 years ago
Although I don't tested, it seems fine except the document should use Integer instead of Fixnum.
Updated by hsbt (Hiroshi SHIBATA) about 7 years ago
- Status changed from Open to Assigned
- Assignee set to hsbt (Hiroshi SHIBATA)
Updated by naruse (Yui NARUSE) about 7 years ago
- Status changed from Assigned to Closed
Applied in changeset trunk|r59702.
Add Socket::Ifaddr.vhid on supported platforms [Feature #13803]
patched by Alan Somers
Updated by hsbt (Hiroshi SHIBATA) about 7 years ago
I also confirmed to build success with FreeBSD 11.0-RELEASE-p1