Usage: rule srcaddr = (ipv4 | ipv6 | ipv4-ipv4 | ipv6-ipv6 | dns | server) dstaddr = (ipv4 | ipv6 | ipv4-ipv4 | ipv6-ipv6 ...

Usage:   rule [ srcaddr = ] (ipv4 | ipv6 | ipv4-ipv4 | ipv6-ipv6 | dns | server)        [ dstaddr = ] (ipv4 | ipv6 | ipv4-ipv4 | ipv6-ipv6 | dns | server)        [ protocol = ] (ANY | ICMP | TCP | UDP | RAW | )        [ srcport = ]         [ dstport = ]         [ mirrored = ] (yes | no)        [ conntype = ] (lan | dialup | all)        [ [ srcmask = ] (mask | prefix) ]        [ [ dstmask = ] (mask | prefix) ]        [ [ tunneldstaddress = ] (ip | dns) ]    Deletes a rule from SPD.  Parameters:    Tag               Value   srcaddr          -Source ip address (ipv4 or ipv6), address range, dns name, or server type.   dstaddr          -Destination ip address (ipv4 or ipv6), address range, dns name, or server type.   protocol         -Can be ANY, ICMP, TCP, UDP, RAW, or an integer.   srcport          -Source port. A value of 0 means any port.   dstport          -Destination port. A value of 0 means any port.   mirrored         -‘Yes' creates two filters, one in each direction.   conntype         -Connection type can be lan, dialup or ‘all'.   srcmask          -Source address mask or a prefix of 1 through 32.   dstmask          -Destination address mask or a prefix of 1 through 32.   tunneldstaddress -Tunnel destination ip address or dns name.  Remarks:  1. To specify the current computer address, set srcaddr/dstaddr=me              To specify all computer addresses, set srcaddr/dstaddr=any           2. Server type can be WINS, DNS, DHCP or GATEWAY           3. If an address range is specified, the endpoints need to be specific addresses (not lists, or subnets) and of the same type (both should be v4 or both should be v6).  Examples: delete rule srca=192.168.145.110 dsta=192.168.145.215           tunneldsta=192.168.145.1           proto=tcp srcport=80 dstport=80 mirror=no conntype=lan