In article < .com>,
Merv <> wrote:
>> I am having a problem establishing a VPN (pptp) sessions
>> access-list 101 permit ip any any
>PPTP uses GRE (protocol 47) and TCP port 1723
>so try:
> access-list 101 permit ip any any
> access-list 101 permit tcp any any eq 1723
> access-list 101 permit gre any any
tcp and gre are subsets of ip.
http://www.cisco.com/en/US/products/...html#wp1017448
"To match any Internet protocol (including ICMP, TCP, and UDP) use the
keyword ip."
That "including" should not be read as an exclusive list: the important
part there is "any Internet protocol". GRE, AH and ESP are all examples
of Internet Protocols, so they are included when you specify "ip".