diff options
Diffstat (limited to 'networking')
-rw-r--r-- | networking/udhcp/Config.src | 8 | ||||
-rw-r--r-- | networking/udhcp/common.c | 8 | ||||
-rw-r--r-- | networking/udhcp/common.h | 2 |
3 files changed, 18 insertions, 0 deletions
diff --git a/networking/udhcp/Config.src b/networking/udhcp/Config.src index 9cd8cbbae..6bfa398ea 100644 --- a/networking/udhcp/Config.src +++ b/networking/udhcp/Config.src | |||
@@ -113,6 +113,14 @@ config FEATURE_UDHCP_RFC3397 | |||
113 | search lists via option 119, specified in RFC 3397, | 113 | search lists via option 119, specified in RFC 3397, |
114 | and SIP servers option 120, specified in RFC 3361. | 114 | and SIP servers option 120, specified in RFC 3361. |
115 | 115 | ||
116 | config FEATURE_UDHCP_8021Q | ||
117 | bool "Support for 802.1Q VLAN parameters" | ||
118 | default y | ||
119 | depends on UDHCPD || UDHCPC | ||
120 | help | ||
121 | If selected, both client and server will support passing of VLAN | ||
122 | ID and priority via options 132 and 133 as per 802.1Q. | ||
123 | |||
116 | config UDHCPC_DEFAULT_SCRIPT | 124 | config UDHCPC_DEFAULT_SCRIPT |
117 | string "Absolute path to config script" | 125 | string "Absolute path to config script" |
118 | default "/usr/share/udhcpc/default.script" | 126 | default "/usr/share/udhcpc/default.script" |
diff --git a/networking/udhcp/common.c b/networking/udhcp/common.c index 0a60261ab..70e34614c 100644 --- a/networking/udhcp/common.c +++ b/networking/udhcp/common.c | |||
@@ -55,6 +55,10 @@ const struct dhcp_optflag dhcp_optflags[] = { | |||
55 | { OPTION_SIP_SERVERS , 0x78 }, /* DHCP_SIP_SERVERS */ | 55 | { OPTION_SIP_SERVERS , 0x78 }, /* DHCP_SIP_SERVERS */ |
56 | #endif | 56 | #endif |
57 | { OPTION_STATIC_ROUTES , 0x79 }, /* DHCP_STATIC_ROUTES */ | 57 | { OPTION_STATIC_ROUTES , 0x79 }, /* DHCP_STATIC_ROUTES */ |
58 | #if ENABLE_FEATURE_UDHCP_8021Q | ||
59 | { OPTION_U16 , 0x84 }, /* DHCP_VLAN_ID */ | ||
60 | { OPTION_U8 , 0x85 }, /* DHCP_VLAN_PRIORITY */ | ||
61 | #endif | ||
58 | { OPTION_STATIC_ROUTES , 0xf9 }, /* DHCP_MS_STATIC_ROUTES */ | 62 | { OPTION_STATIC_ROUTES , 0xf9 }, /* DHCP_MS_STATIC_ROUTES */ |
59 | { OPTION_STRING , 0xfc }, /* DHCP_WPAD */ | 63 | { OPTION_STRING , 0xfc }, /* DHCP_WPAD */ |
60 | 64 | ||
@@ -118,6 +122,10 @@ const char dhcp_option_strings[] ALIGN1 = | |||
118 | // doesn't work in udhcpd.conf since OPTION_STATIC_ROUTES | 122 | // doesn't work in udhcpd.conf since OPTION_STATIC_ROUTES |
119 | // is not handled yet by "string->option" conversion code: | 123 | // is not handled yet by "string->option" conversion code: |
120 | "staticroutes" "\0"/* DHCP_STATIC_ROUTES */ | 124 | "staticroutes" "\0"/* DHCP_STATIC_ROUTES */ |
125 | #if ENABLE_FEATURE_UDHCP_8021Q | ||
126 | "vlanid" "\0" /* DHCP_VLAN_ID */ | ||
127 | "vlanpriority" "\0"/* DHCP_VLAN_PRIORITY */ | ||
128 | #endif | ||
121 | "msstaticroutes""\0"/* DHCP_MS_STATIC_ROUTES */ | 129 | "msstaticroutes""\0"/* DHCP_MS_STATIC_ROUTES */ |
122 | "wpad" "\0" /* DHCP_WPAD */ | 130 | "wpad" "\0" /* DHCP_WPAD */ |
123 | ; | 131 | ; |
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h index f8f18ff01..ad6991c94 100644 --- a/networking/udhcp/common.h +++ b/networking/udhcp/common.h | |||
@@ -145,6 +145,8 @@ enum { | |||
145 | //#define DHCP_DOMAIN_SEARCH 0x77 /* RFC 3397. set of ASCIZ string, DNS-style compressed */ | 145 | //#define DHCP_DOMAIN_SEARCH 0x77 /* RFC 3397. set of ASCIZ string, DNS-style compressed */ |
146 | //#define DHCP_SIP_SERVERS 0x78 /* RFC 3361. flag byte, then: 0: domain names, 1: IP addrs */ | 146 | //#define DHCP_SIP_SERVERS 0x78 /* RFC 3361. flag byte, then: 0: domain names, 1: IP addrs */ |
147 | //#define DHCP_STATIC_ROUTES 0x79 /* RFC 3442. (mask,ip,router) tuples */ | 147 | //#define DHCP_STATIC_ROUTES 0x79 /* RFC 3442. (mask,ip,router) tuples */ |
148 | #define DHCP_VLAN_ID 0x84 /* 802.1P VLAN ID */ | ||
149 | #define DHCP_VLAN_PRIORITY 0x85 /* 802.1Q VLAN priority */ | ||
148 | //#define DHCP_MS_STATIC_ROUTES 0xf9 /* Microsoft's pre-RFC 3442 code for 0x79? */ | 150 | //#define DHCP_MS_STATIC_ROUTES 0xf9 /* Microsoft's pre-RFC 3442 code for 0x79? */ |
149 | //#define DHCP_WPAD 0xfc /* MSIE's Web Proxy Autodiscovery Protocol */ | 151 | //#define DHCP_WPAD 0xfc /* MSIE's Web Proxy Autodiscovery Protocol */ |
150 | #define DHCP_END 0xff | 152 | #define DHCP_END 0xff |