From 21ac08d83e909ae0d30cf0eaef09f53ce7e7e25d Mon Sep 17 00:00:00 2001 From: Allan Jude Date: Fri, 29 May 2015 20:34:54 +0000 Subject: [PATCH] Add ifconfig__aliases="range/mask range/mask" example to the handbook Differential Revision: https://reviews.freebsd.org/D2660 Reviewed by: eadler Approved by: wblock (mentor) Sponsored by: ScaleEngine Inc. --- en_US.ISO8859-1/books/handbook/config/chapter.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/en_US.ISO8859-1/books/handbook/config/chapter.xml b/en_US.ISO8859-1/books/handbook/config/chapter.xml index 404b3becf5..be9828616e 100644 --- a/en_US.ISO8859-1/books/handbook/config/chapter.xml +++ b/en_US.ISO8859-1/books/handbook/config/chapter.xml @@ -1202,6 +1202,13 @@ ifconfig_fxp0_alias4="inet 202.0.75.17 netmask 255.255.255.240" ifconfig_fxp0_alias5="inet 202.0.75.18 netmask 255.255.255.255" ifconfig_fxp0_alias6="inet 202.0.75.19 netmask 255.255.255.255" ifconfig_fxp0_alias7="inet 202.0.75.20 netmask 255.255.255.255" + + A simpler way to express this is with a space-separated list + of IP address ranges. The first address will be given the + indicated subnet mask and the additional addresses will have a + subnet mask of 255.255.255.255. + + ifconfig_fxp0_aliases="inet 10.1.1.1-5/24 inet 202.0.75.17-20/28"