Table Of Contents
H.323 RAS Support in Cisco IOS Firewall
Finding Feature Information
Contents
Restrictions for H.323 RAS Support in Cisco IOS Firewall
How to Configure a Firewall Policy for H.323 RAS Protocol Inspection
Configuring a Class Map for H.323 RAS Protocol Inspection
Creating a Policy Map for H.323 RAS Protocol Inspection
What to Do Next
Configuration Examples for H.225 RAS Protocol Inspection
H.323 RAS Protocol Inspection Configuration: Example
H.225 RAS Firewall Policy Configuration: Example
Additional References
Related Documents
MIBs
Technical Assistance
Command Reference
Feature Information for H.323 RAS Support in Cisco IOS Firewall
H.323 RAS Support in Cisco IOS Firewall
First Published: November 17, 2006
Last Updated: June 19, 2009
This feature introduces support for H.225 Registration, Admission, and Status (RAS) signaling in Cisco IOS firewalls. RAS is a signaling protocol that is used between endpoints (such as gateways) and gatekeepers.
The H.225 standard is used by H.323 for call setup. H.255 includes RAS control, which is used to communicate with the gatekeeper. A RAS signaling channel enables connections between the gatekeeper and H.323 endpoints.
Finding Feature Information
Your software release may not support all the features documented in this module. For the latest feature information and caveats, see the release notes for your platform and software release. To find information about the features documented in this module, and to see a list of the releases in which each feature is supported, see the "Feature Information for H.323 RAS Support in Cisco IOS Firewall" section.
Use Cisco Feature Navigator to find information about platform support and Cisco IOS and Catalyst OS software image support. To access Cisco Feature Navigator, go to http://www.cisco.com/go/cfn. An account on Cisco.com is not required.
Contents
•
Restrictions for H.323 RAS Support in Cisco IOS Firewall
•
How to Configure a Firewall Policy for H.323 RAS Protocol Inspection
•
Configuration Examples for H.225 RAS Protocol Inspection
•
Additional References
•
Command Reference
•
Feature Information for H.323 RAS Support in Cisco IOS Firewall
Restrictions for H.323 RAS Support in Cisco IOS Firewall
H.225 RAS inspection is supported only with zone-based policy firewall inspection.
How to Configure a Firewall Policy for H.323 RAS Protocol Inspection
This section contains the following configuration tasks:
•
Configuring a Class Map for H.323 RAS Protocol Inspection
•
Creating a Policy Map for H.323 RAS Protocol Inspection
Configuring a Class Map for H.323 RAS Protocol Inspection
Use this task to configure a class map for classifying network traffic.
SUMMARY STEPS
1.
enable
2.
configure terminal
3.
class-map type inspect [match any | match all] class-map-name
4.
match access-group {access-group | name access-group-name}
5.
match protocol protocol-name [signature]
6.
match protocol protocol-name [signature]
7.
match class-map class-map-name
8.
exit
DETAILED STEPS
| |
Command or Action
|
Purpose
|
Step 1
|
enable
Example:
Router> enable
|
Enables privileged EXEC mode.
• Enter your password if prompted.
|
Step 2
|
configure terminal
Example:
Router# configure terminal
|
Enters global configuration mode.
|
Step 3
|
class-map type inspect [match-any | match-all]
class-map-name
Example:
Router(config)# class-map type inspect
match-all c1
|
Creates a Layer 3 or Layer 4 inspect type class map and enters class-map configuration mode.
|
Step 4
|
match access-group {access-group | name
access-group-name}
Example:
Router(config-cmap)# match access-group 101
|
(Optional) Configures the match criterion for a class map based on the access control list (ACL) name or number.
|
Step 5
|
match protocol protocol-name [signature]
Example:
Router(config-cmap)# match protocol h225ras
|
Configures the match criterion for a class map on the basis of a specified protocol.
Note You should specify the h225ras keyword to create a class-map for H.225 RAS protocol classification.
For a list of supported protocols, use the command-line interface (CLI) help option (?) on your platform.
|
Step 6
|
match protocol protocol-name [signature]
Example:
Router(config-cmap)# match protocol h323
|
Configures the match criterion for a class map on the basis of a specified protocol.
Note You should specify the h323 keyword to create a class-map for H.323 protocol classification.
|
Step 7
|
match class-map class-map-name
Example:
Router(config-cmap)# match class-map c1
|
(Optional) Specifies a previously defined class as the match criterion for a class map.
|
Step 8
|
exit
Example:
Router(config-cmap)# exit
|
Returns to global configuration mode.
|
Creating a Policy Map for H.323 RAS Protocol Inspection
Use this task to create a policy map for a firewall policy that will be attached to zone pairs.
Note
If you are creating an inspect type policy map, only the following actions are allowed: drop, inspect, police, and pass.
SUMMARY STEPS
1.
enable
2.
configure terminal
3.
policy-map type inspect policy-map-name
4.
class type inspect class-name
5.
inspect [parameter-map-name]
6.
police rate bps burst size
7.
drop [log]
8.
pass
9.
exit
DETAILED STEPS
| |
Command or Action
|
Purpose
|
Step 1
|
enable
Example:
Router> enable
|
Enables privileged EXEC mode.
• Enter your password if prompted.
|
Step 2
|
configure terminal
Example:
Router# configure terminal
|
Enters global configuration mode.
|
Step 3
|
policy-map type inspect policy-map-name
Example:
Router(config)# policy-map type inspect p1
|
Creates a Layer 3 and Layer 4 inspect type policy map and enters policy-map configuration mode.
|
Step 4
|
class type inspect class-name
Example:
Router(config-pmap)# class type inspect c1
|
Specifies the traffic (class) on which an action is to be performed and enters policy-map class configuration mode.
|
Step 5
|
inspect [parameter-map-name]
Example:
Router(config-pmap-c)# inspect inspect-params
|
Enables Cisco IOS stateful packet inspection.
|
Step 6
|
police rate bps burst size
Example:
Router(config-pmap-c)# police rate 2000 burst
3000
|
(Optional) Limits traffic matching within a firewall (inspect) policy.
|
Step 7
|
drop [log]
Example:
Router(config-pmap-c)# drop
|
(Optional) Drops packets that are matched with the defined class.
Note The actions drop and pass are exclusive, and the actions inspect and drop are exclusive; that is, you cannot specify both of them.
|
Step 8
|
pass
Example:
Router(config-pmap-c)# pass
|
(Optional) Allows packets that are matched with the defined class.
|
Step 9
|
exit
Example:
Router(config-pmap-c)# exit
|
Returns to policy-map configuration mode.
|
What to Do Next
After configuring an H.323 RAS protocol firewall policy, you want to attach the policy to a zone pair. For information on completing this task, see the "Zone-Based Policy Firewall" module.
Configuration Examples for H.225 RAS Protocol Inspection
This section contains the following configuration example:
•
H.323 RAS Protocol Inspection Configuration: Example
•
H.225 RAS Firewall Policy Configuration: Example
H.323 RAS Protocol Inspection Configuration: Example
The following example shows how to configure an H.323 RAS protocol inspection policy:
class-map type inspect match-any c1
class-map type inspect match-all c2
policy-map type inspect p1
policy-map type inspect p2
description One-Network zone
description Two-Network zone
zone-pair security zp source z1 destination z2
service-policy type inspect p1
zone-pair security zp-rev source z2 destination z1
service-policy type inspect p2
interface FastEthernet1/0
ip address 10.0.0.0 255.255.0.0
interface FastEthernet1/1
ip address 10.0.1.1 255.255.0.0
H.225 RAS Firewall Policy Configuration: Example
The following example shows how to configure the firewall policy to inspect H.225 RAS messages:
interface GigabitEthernet 0/1/5
ip address 172.16.0.0 255.255.0.0
zone-member security private
no shut
!
interface GigabitEthernet 0/1/6
ip address 192.168.0.0 255.255.0.0
zone-member security internet
no shut
!
zone security private
zone security internet
!
class-map type inspect match-any internet-traffic-class
match protocol h225ras
match protocol h323
!
policy-map type inspect private-internet-policy
class type inspect internet-traffic-class
inspect
class class-default
!
zone-pair security private-internet source private destination internet
service-policy type inspect private-internet-policy
Additional References
The following sections provide references related to the H.323 RAS Support in Cisco IOS Firewall feature.
Related Documents
MIBs
MIB
|
MIBs Link
|
No new or modified MIBs are supported.
|
To locate and download MIBs for selected platforms, Cisco IOS releases, and feature sets, use Cisco MIB Locator found at the following URL:
http://www.cisco.com/go/mibs
|
Technical Assistance
Description
|
Link
|
The Cisco Support website provides extensive online resources, including documentation and tools for troubleshooting and resolving technical issues with Cisco products and technologies.
To receive security and technical information about your products, you can subscribe to various services, such as the Product Alert Tool (accessed from Field Notices), the Cisco Technical Services Newsletter, and Really Simple Syndication (RSS) Feeds.
Access to most tools on the Cisco Support website requires a Cisco.com user ID and password.
|
http://www.cisco.com/techsupport
|
Command Reference
The following commands are introduced or modified in the feature or features documented in this module. For information about these commands, see the Cisco IOS Security Command Reference at http://www.cisco.com/en/US/docs/ios/security/command/reference/sec_book.html. For information about all Cisco IOS commands, use the Command Lookup Tool at http://tools.cisco.com/Support/CLILookup or the Cisco IOS Master Command List, All Releases, at http://www.cisco.com/en/US/docs/ios/mcl/allreleasemcl/all_book.html.
match protocol (zone)
Feature Information for H.323 RAS Support in Cisco IOS Firewall
Table 1 lists the release history for this feature.
Not all commands may be available in your Cisco IOS software release. For release information about a specific command, see the command reference documentation.
Use Cisco Feature Navigator to find information about platform support and software image support. Cisco Feature Navigator enables you to determine which Cisco IOS and Catalyst OS software images support a specific software release, feature set, or platform. To access Cisco Feature Navigator, go to http://www.cisco.com/go/cfn. An account on Cisco.com is not required.
Note
Table 1 lists only the Cisco IOS software release that introduced support for a given feature in a given Cisco IOS software release train. Unless noted otherwise, subsequent releases of that Cisco IOS software release train also support that feature.
Table 1 Feature Information for H.323 RAS Support
Feature Name
|
Releases
|
Feature Information
|
H.323 RAS Support in Cisco IOS Firewall
|
12.4(11)T
Cisco IOS XE Release 2.4
|
This feature introduces support for H.255 Registration, Admission, and Status (RAS) signaling in Cisco IOS firewalls.
In Cisco IOS XE Release 2.4, this feature was implemented on the Cisco ASR 1000 series routers.
|
CCDE, CCSI, CCENT, Cisco Eos, Cisco HealthPresence, the Cisco logo, Cisco Lumin, Cisco Nexus, Cisco Nurse Connect, Cisco Stackpower, Cisco StadiumVision, Cisco TelePresence, Cisco WebEx, DCE, and Welcome to the Human Network are trademarks; Changing the Way We Work, Live, Play, and Learn and Cisco Store are service marks; and Access Registrar, Aironet, AsyncOS, Bringing the Meeting To You, Catalyst, CCDA, CCDP, CCIE, CCIP, CCNA, CCNP, CCSP, CCVP, Cisco, the Cisco Certified Internetwork Expert logo, Cisco IOS, Cisco Press, Cisco Systems, Cisco Systems Capital, the Cisco Systems logo, Cisco Unity, Collaboration Without Limitation, EtherFast, EtherSwitch, Event Center, Fast Step, Follow Me Browsing, FormShare, GigaDrive, HomeLink, Internet Quotient, IOS, iPhone, iQuick Study, IronPort, the IronPort logo, LightStream, Linksys, MediaTone, MeetingPlace, MeetingPlace Chime Sound, MGX, Networkers, Networking Academy, Network Registrar, PCNow, PIX, PowerPanels, ProConnect, ScriptShare, SenderBase, SMARTnet, Spectrum Expert, StackWise, The Fastest Way to Increase Your Internet Quotient, TransPath, WebEx, and the WebEx logo are registered trademarks of Cisco Systems, Inc. and/or its affiliates in the United States and certain other countries.
All other trademarks mentioned in this document or website are the property of their respective owners. The use of the word partner does not imply a partnership relationship between Cisco and any other company. (0903R)
Any Internet Protocol (IP) addresses and phone numbers used in this document are not intended to be actual addresses and phone numbers. Any examples, command display output, network topology diagrams, and other figures included in the document are shown for illustrative purposes only. Any use of actual IP addresses or phone numbers in illustrative content is unintentional and coincidental.
© 2006-2009 Cisco Systems, Inc. All rights reserved.