mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-02 08:42:48 +00:00
Implement matching IP precedence in ipfw(4).
Submitted by: Igor Timkin <ivt@gamma.ru>
This commit is contained in:
parent
37b5d6e33d
commit
b6ee452478
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=88360
@ -662,6 +662,9 @@ of bandwidth, queue occupation, and also counters.
|
||||
.It Cm ipversion Ar ver
|
||||
Match if the IP header version is
|
||||
.Ar ver .
|
||||
.It Cm ipprecedence Ar precedence
|
||||
Match if the numeric value of IP datagram's precedence is equal to
|
||||
.Ar precedence .
|
||||
.It Cm iptos Ar spec
|
||||
Match if the IP header contains the comma separated list of
|
||||
service types specified in
|
||||
|
@ -458,6 +458,8 @@ show_ipfw(struct ip_fw *chain)
|
||||
printf(" iplen %u", chain->fw_iplen);
|
||||
if (chain->fw_ipflg & IP_FW_IF_IPID)
|
||||
printf(" ipid %#x", chain->fw_ipid);
|
||||
if (chain->fw_ipflg & IP_FW_IF_IPPRE)
|
||||
printf(" ipprecedence %u", (chain->fw_iptos & 0xe0) >> 5);
|
||||
|
||||
if (chain->fw_ipflg & IP_FW_IF_IPTOS) {
|
||||
int _opt_printed = 0;
|
||||
@ -930,6 +932,7 @@ show_usage(void)
|
||||
" ipoptions [!]{ssrr|lsrr|rr|ts}, ...\n"
|
||||
" iplen {length}\n"
|
||||
" ipid {identification number}\n"
|
||||
" ipprecedence {precedence}\n"
|
||||
" iptos [!]{lowdelay|throughput|reliability|mincost|congestion}, ...\n"
|
||||
" ipttl {time to live}\n"
|
||||
" ipversion {version number}\n"
|
||||
@ -2120,6 +2123,24 @@ add(int ac, char *av[])
|
||||
rule.fw_ipflg |= IP_FW_IF_IPID;
|
||||
rule.fw_ipid = (u_short)ipid;
|
||||
av++; ac--;
|
||||
} else if (!strncmp(*av, "ipprecedence", strlen(*av))) {
|
||||
u_long ippre;
|
||||
char *c;
|
||||
|
||||
av++; ac--;
|
||||
if (!ac)
|
||||
errx(EX_USAGE, "missing argument"
|
||||
" for ``ipprecedence''");
|
||||
ippre = strtoul(*av, &c, 0);
|
||||
if (*c != '\0')
|
||||
errx(EX_DATAERR, "argument to ipprecedence"
|
||||
" must be numeric");
|
||||
if (ippre > 7)
|
||||
errx(EX_DATAERR, "argument to ipprecedence"
|
||||
" out of range");
|
||||
rule.fw_ipflg |= IP_FW_IF_IPPRE;
|
||||
rule.fw_iptos |= (u_short)(ippre << 5);
|
||||
av++; ac--;
|
||||
} else if (!strncmp(*av, "iptos", strlen(*av))) {
|
||||
av++; ac--;
|
||||
if (!ac)
|
||||
|
Loading…
Reference in New Issue
Block a user