Table Of Contents
Enabling the DHCP Client Feature and Setting Default Route
Configuring the DHCP Server Feature
Upgrading Failover from a Previous Version
Additional Failover Information
Frequently Asked Failover Questions
Introduction to PPTP Configuration
Receiving Requests and Sending Syslog Traps
Compiling Cisco Syslog MIB Files
Using the Firewall and Memory Pool MIBs
Advanced Configurations
This chapter includes the following sections:
•
DHCP
•
PPTP Virtual Private Networks
•
SNMP
•
SSH
Note
For IPSec and L2TP configuration information, refer to the Cisco PIX Firewall IPSec User Guide, Version 6.0.
DHCP
Support for DHCP (Dynamic Host Configuration Protocol) server and DHCP client within the PIX Firewall is now available. DHCP is a protocol that supplies automatic configuration parameters to Internet hosts. This protocol has two components:
•
a protocol for delivering host-specific configuration parameters from a DHCP server to a host (DHCP client)
•
a mechanism for allocating network addresses to hosts
A DHCP server is simply a computer that provides configuration parameters to a DHCP client, and a DHCP client is a computer or network device that uses DHCP to obtain network configuration parameters.
DHCP Client
DHCP client support within the PIX Firewall is designed for use within a small office, home office (SOHO) environment using a PIX Firewall that is directly connected to a DSL or cable modem that supports the DHCP server function. With the DHCP client feature enabled on a PIX Firewall, the PIX Firewall functions as a DHCP client to a DHCP server allowing the server to configure the unit's enabled interface with an IP address, subnet mask, and optionally a default route.
Note
Use of the DHCP client feature to acquire an IP address from a generic DHCP server is not supported.
Note
The PIX Firewall DHCP client does not support failover configurations.
To support the DHCP client feature within the PIX Firewall, the following enhancements were made:
•
enhanced the ip address and the show ip address commands
–
ip address if_name dhcp [setroute] [retry retry_cnt]
–
ip address outside dhcp [setroute] [retry retry_cnt]
–
show ip address if_name dhcp
•
added new debug commands:
–
debug dhcpc packet
–
debug dhcpc detail
–
debug dhcpc error
The ip address dhcp command enables the DHCP client feature on the specified PIX Firewall interface. The optional setroute argument tells the PIX Firewall to set the default route using the default gateway parameter the DHCP server returns.
The debug dhcpc commands provide debugging tools for the enabled DHCP client feature.
The PIX Firewall commands used to implement the DHCP client are described in the ip address command page and the debug command page within "Command Reference." Refer to these command pages for more information.
Note
The DHCP-acquired IP address of the outside interface can also be used as the PAT global address.This makes it unnecessary for the ISP to assign a static IP address to PIX Firewall. Use the global command with interface keyword to enable PAT to use the DHCP-acquired IP address of outside interface. For more information about the global command, see the global command page in the "Command Reference."
Enabling the DHCP Client Feature and Setting Default Route
To enable the DHCP client feature on a given PIX Firewall interface and set the default route via the DHCP server, configure the ip address dhcp setroute command as part of your entire PIX Firewall configuration, including the setroute option. Specify the name of the interface on which the DHCP client will be enabled.
DHCP Server
DHCP server support within the PIX Firewall is designed for use within a remote home or branch office (ROBO) environment using a PIX 506 unit. Connecting to the PIX Firewall are PC clients and other network devices (DHCP clients) that establish network connections that are either nonsecure (not encrypted) or secure (encrypted using IPSec) to access an enterprise or corporate network. As a DHCP server, the PIX Firewall provides network configuration parameters to the DHCP clients through the use of DHCP. These configuration parameters provide a DHCP client the networking parameters used to access the enterprise network, and once in the network, the network services to use, such as the DNS server.
Note
PIX Firewall version 5.3 supports 32 DHCP clients. Prior to the version 5.3 software release, PIX Firewall DHCP servers supported 10 DHCP clients. PIX Firewall version 5.3 and later supports 32 clients on PIX Firewall and 256 on other platforms.
Note
In version 6.0, PIX Firewall DHCP server supports up to 256 DHCP clients. You cannot configure a DHCP server for 256 clients, using a Class C netmask. For example, if a company has a Class C network address of 172.17.1.0 with netmask 255.255.255.0, then 172.17.1.0 (network IP) and 172.17.1.255 (broadcast) cannot be in the DHCP address pool range. Further, one address is used up for the PIX Firewall interface. Thus, if a user uses a Class C netmask, they can only have up to 253 DHCP Clients. To have 256 clients configured, they cannot use a Class C netmask.
Note
The PIX Firewall DHCP server does not support BOOTP requests and failover configurations.
The PIX Firewall commands used to implement the DHCP server feature are described in the dhcpd command page and the debug command page within "Command Reference." Refer to these command pages for more information.
Configuring the DHCP Server Feature
Be sure to configure the IP address and the subnet mask of the inside interface using the ip address command prior to enabling the DHCP server feature.
Follow these steps to enable the DHCP server feature on a given PIX Firewall interface.
(Steps 1 and 6 are required.)
Step 1
Specify a DHCP address pool using the dhcpd address command. The PIX Firewall will assign to a client one of the addresses from this pool to use for a given length of time. The default is the inside interface. For example:
dhcpd address 10.0.1.101-10.0.1.110 insideStep 2
(Optional) Specify the IP address(es) of the DNS server(s) the client will use. You can specify up to two DNS servers. For example:
dhcpd dns 209.165.201.2 209.165.202.129Step 3
(Optional) Specify the IP address(es) of the WINS server(s) the client will use. You can specify up to two WINS servers. For example:
dhcpd wins 209.165.201.5Step 4
Specify the lease length to grant the client. This lease equals the amount of time (in seconds) the client can use its allocated IP address before the lease expires. The default value is 3,600 seconds. For example:
dhcpd lease 3000Step 5
(Optional) Configure the domain name the client will use. For example:
dhcpd domain example.comStep 6
Enable the DHCP daemon within the PIX Firewall to listen for DHCP client requests on the enabled interface. Currently, you can only enable the DHCP server feature on the inside interface, which is the default. For example:
dhcpd enable inside! set the ip address of the inside interfaceip address inside 10.0.1.2 255.255.255.0! configure the network parameters the client will use once in the corporate network anddhcpd address 10.0.1.101-10.0.1.110dhcpd dns 209.165.201.2 209.165.202.129dhcpd wins 209.165.201.5dhcpd lease 3000dhcpd domain example.com! enable dhcp server daemon on the inside interfacedhcpd enable insideThe following example shows the configuration of a DHCP address pool and a DNS server address with the inside interface being enabled for the DHCP server feature:
dhcpd address 10.0.1.100-10.0.1.108dhcpd dns 209.165.200.227dhcpd enableThe following example shows the configuration of a DHCP address pool and uses the auto_config command to configure the dns, wins, and domain parameters:
dhcpd address 10.0.1.100-10.0.1.108dhcpd auto_configdhcpd enableThe following is a partial configuration example of the DHCP server and IPSec features configured on a PIX Firewall that is within a remote office. The PIX 506 unit's VPN peer is another PIX Firewall that has an outside interface IP address of 209.165.200.228 and functions as a gateway for a corporate network.
! configure interface ip addressip address outside 209.165.202.129 255.255.255.0ip address inside 172.17.1.1 255.255.255.0! configure ipsec with corporate pixaccess-list ipsec-peer permit ip 172.17.1.0 255.255.255.0 192.168.0.0 255.255.255.0ipsec transform-set myset esp-des esp-sha-hmaccrypto map mymap 10 ipsec-isakmpcrypto map mymap 10 match address ipsec-peercrypto map mymap 10 set transform-set mysetcrypto map mymap 10 set peer 209.165.200.228crypto map mymap interface outsidesysopt connection permit-ipsecnat (inside) 0 access-list ipsec-peerisakmp policy 10 authentication preshareisakmp policy 10 encryption desisakmp policy 10 hash shaisakmp policy 10 group 1isakmp policy 10 lifetime 3600isakmp key 12345678 address 0.0.0.0 netmask 0.0.0.0isakmp enable outside!configure dhcp server addressdhcpd address 172.17.1.100-172.17.1.109dhcpd dns 192.168.0.20dhcpd wins 192.168.0.10dhcpd lease 3000dhcpd domain example.com! enable dhcp server on inside interfacedhcpd enable! use outside interface ip as PAT global addressnat (inside) 1 0 0global (outside) 1 interfaceFailover
Failover allows you to add a second PIX Firewall unit that takes control if the primary unit fails.
This section includes the following topics:
•
Upgrading Failover from a Previous Version
•
Additional Failover Information
A failover configuration example is provided in "Failover Configuration" in "Configuration Examples."
Note
The PIX 506 or PIX 506E cannot be used for failover in any configuration.
Note
The primary unit in the PIX 515, PIX 525, or PIX 535 failover pair must have an Unrestricted (UR) license. The secondary unit can have a Failover (FO) or UR license. However, the failover pair must be two otherwise identical units with the same PIX Firewall hardware and software.
Understanding Failover
Failover allows you to connect a second PIX Firewall unit to your network to protect your network should the first unit go offline. If you use Stateful Failover, you can maintain operating state for the TCP connection during the failover from the primary unit to the standby unit.
When a failover occurs, each unit changes state. The unit that activates assumes the IP and MAC addresses of the previously Active unit and begins accepting traffic. The new Standby unit assumes the failover IP and MAC addresses of the unit that was previously the Active unit. Because network devices see no change in these addresses, no ARP entries change or time out anywhere on the network.
Failover requires you to purchase a second PIX Firewall unit sold as a failover unit that only works as a failover unit. You need to ensure that both units have the same software version, activation key type, Flash memory, and the same RAM. Once you configure the primary unit and attach the necessary cabling, the primary unit automatically copies the configuration over to the Standby unit.
The ACT indicator light on the front of the PIX 515, PIX 525, and PIX 535 is on when the unit is the Active failover unit. If failover is not enabled, this light is on. If failover is present, the light is on when the unit is the Active unit and off when the unit is the Standby unit.
Failover works over Ethernet. However, Stateful Failover interfaces must have a connection speed of a minimum of 100 Mbps full-duplex.
The failover feature causes the PIX Firewall to ARP for itself every 15 seconds (depending on the time set with the failover poll command). This ARPing can only be stopped by disabling failover.
Cabling the two PIX Firewall units together requires connecting a high-speed serial cable for communications. The minimum requirement for Stateful Failover is a dedicated 100 Mbps full-duplex connection.
Configuring the primary PIX Firewall for failover requires you to configure the failover command to enable failover, the failover ip address command to assign IP addresses to the Standby unit, and the failover link command to enable Stateful Failover.
Note
Refer to "Additional Failover Information" for information on Stateful Failover, how failover occurs, and frequently asked questions.
Configuring Failover
For failover, both PIX Firewall units must be the same model number, have at least as much RAM, have the same Flash memory size, and be running the same software version.
Note
If you have already powered on the Standby unit, power it off and leave it off until instructed in the steps that follow.
Follow these steps to configure failover:
Step 1
Because the PIX Firewall clock is stored in the CMOS, if you have not done so already, specify the clock set time command on the Active PIX Firewall to synchronize the time on both PIX Firewall units. If you are using IPSec with digital certificates, set the time appropriate to the GMT timezone (this is done because the PIX Firewall does not use timezones.)
Step 2
Attach a network cable between the primary and secondary units for each network interface to which you have configured an IP address.
Step 3
Connect the failover cable to the primary PIX Firewall unit ensuring that the end of the cable marked "primary" attaches to the primary unit and that the end marked "secondary" connects to the secondary unit.
Step 4
Only configure the primary unit. Changes made to the Standby unit are not copied to the primary unit and are lost during the next reboot. When you are done configuring the PIX Firewall and enter the write memory command to save the configuration to Flash memory, the primary unit automatically updates the secondary unit.
Note
Do not power on the secondary unit instructed. First configure the primary unit and then power on the secondary unit only when instructed to do so.
Step 5
Enter configuration mode with the configure terminal command.
Step 6
Ensure that you have not used the auto or the 1000auto option in any interface command in your configuration. To view interface commands in your configuration, use the write terminal command. Reenter an interface with new information to correct a command you wish to change. Always specify the speed for the interface, such as 10baset for 10 Mbps or 100basetx for 100 Mbps. Ensure that the same speeds and duplexes are the same for any devices on the subnets including switches and routers.
Step 7
If you are using Stateful Failover, set the Stateful Failover dedicate interface speed using the 100fullor 1000sxfull option to the interface command. This is extremely important and must be performed even if you are using a crossover connector to connect the PIX Firewall units directly to each other.
Step 8
Use the clear xlate command after changing the interface command.
Step 9
If you have not done so already, use the ip address command statement to assign IP addresses to each interface on the primary unit. If you make a mistake while entering an ip address command, reenter the command again correctly.
Use the show ip address command to view the addresses you specified:
show ip addressSystem IP Addresses:ip address outside 192.168.1.1 255.255.255.0ip address inside 10.1.1.1 255.255.255.0ip address intf2 192.168.2.1 255.255.255.0ip address intf3 192.168.3.1 255.255.255.0ip address 4th 172.16.1.1 255.255.255.0Current IP Addresses:ip address outside 192.168.1.1 255.255.255.0ip address inside 10.1.1.1 255.255.255.0ip address intf2 192.168.2.1 255.255.255.0ip address intf3 192.168.3.1 255.255.255.0ip address 4th 172.16.1.1 255.255.255.0The Current IP Addresses are the same as the System IP Addresses on the failover Active unit. When the primary unit fails, the Current IP Addresses become those of the Standby unit.
Step 10
Use the failover command statement to enable failover on the primary unit.
Step 11
Use the show failover command to verify that the primary unit is enabled by checking for the following statement:
This host: Primary - ActiveAn example of the show failover command is as follows:
show failoverFailover OnCable status: Other side powered offReconnect timeout 0:00:00Poll frequency 15 secondsThis host: Primary - ActiveActive time: 225 (sec)Interface 4th (172.16.1.1): Normal (Waiting)Interface intf3 (192.168.3.1): Normal (Waiting)Interface intf2 (192.168.2.1): Normal (Waiting)Interface outside (192.168.1.1): Normal (Waiting)Interface inside (10.1.1.1): Normal (Waiting)Other host: Secondary - StandbyActive time: 0 (sec)Interface 4th (0.0.0.0): Unknown (Waiting)Interface intf3 (0.0.0.0): Unknown (Waiting)Interface intf2 (0.0.0.0): Unknown (Waiting)Interface outside (0.0.0.0): Unknown (Waiting)Interface inside (0.0.0.0): Unknown (Waiting)The Cable Status that displays with the show failover command has these values:
•
My side not connected—Indicates that the serial cable is not connected to the unit on which you entered the show failover command.
•
Normal—Indicates that the Active unit is working and that the Standby unit is ready.
•
Other side is not connected—Indicates that the serial cable is not connected to the other unit (the unit opposite from where you entered the show failover command).
•
Other side powered off—Indicates that the unit not shown as Active is powered off.
The failover interface flags appear to the right of each interface's IP address in the show failover display. The failover flags indicate the following:
•
Failed—The interface has failed.
•
Link Down—The interface line protocol is down.
•
Normal—The interface is working correctly.
•
Shut Down—The interface has been administratively shut down (the shutdown option is enabled in the interface command statement in the configuration).
•
Unknown—The IP address for the interface has not been configured and failover cannot determine the status of the interface.
•
Waiting—Monitoring of the other unit's network interface has not yet started.
Step 12
Enter a failover ip address command statement for each interface to specify the Standby unit's interface addresses. It is not necessary for the two units to be configured for this command to work correctly. The IP addresses on the Standby unit are different from the Active unit's addresses, but must be in the same subnet for each interface. The following example sets the IP addresses for the interfaces on the Standby unit:
failover ip address inside 10.1.1.2failover ip address outside 192.168.1.2failover ip address intf2 192.168.2.2failover ip address intf3 192.168.3.2failover ip address 4th 172.16.1.2Use the show failover command and you can see that the secondary unit now has IP addresses for each interface:
show failoverFailover OnCable status: Other side powered offReconnect timeout 0:00:00Poll frequency 15 secondsThis host: Primary - ActiveActive time: 510 (sec)Interface 4th (172.16.1.1): Normal (Waiting)Interface intf3 (192.168.3.1): Normal (Waiting)Interface intf2 (192.168.2.1): Normal (Waiting)Interface outside (192.168.1.1): Normal (Waiting)Interface inside (10.1.1.1): Normal (Waiting)Other host: Secondary - StandbyActive time: 0 (sec)Interface 4th (172.16.1.2): Unknown (Waiting)Interface intf3 (192.168.3.2): Unknown (Waiting)Interface intf2 (192.168.2.2): Unknown (Waiting)Interface outside (192.168.1.2): Unknown (Waiting)Interface inside (10.1.1.2): Unknown (Waiting)Step 13
If you are configuring Stateful Failover, use the failover link command to specify the name of the dedicated interface you are using. For example, assume the "4th" interface will be used for Stateful Failover and enter the following command:
failover link 4thStep 14
After enabling Stateful Failover, use the show failover command and additional information is provided as follows:
show failoverFailover OnCable status: Other side powered offReconnect timeout 0:00:00Poll frequency 15 secondsThis host: Primary - ActiveActive time: 510 (sec)Interface 4th (172.16.1.1): Normal (Waiting)Interface intf3 (192.168.3.1): Normal (Waiting)Interface intf2 (192.168.2.1): Normal (Waiting)Interface outside (192.168.1.1): Normal (Waiting)Interface inside (10.1.1.1): Normal (Waiting)Other host: Secondary - StandbyActive time: 0 (sec)Interface 4th (172.16.1.2): Unknown (Waiting)Interface intf3 (192.168.3.2): Unknown (Waiting)Interface intf2 (192.168.2.2): Unknown (Waiting)Interface outside (192.168.1.2): Unknown (Waiting)Interface inside (10.1.1.2): Unknown (Waiting)Stateful Failover Logical Update StatisticsLink : 4thStateful Obj xmit xerr rcv rerrGeneral 0 0 0 0sys cmd 0 0 0 0up time 0 0 0 0xlate 0 0 0 0tcp conn 0 0 0 0udp conn 0 0 0 0ARP tbl 0 0 0 0RIP Tbl 0 0 0 0Logical Update Queue InformationCur Max TotalRecv Q: 0 0 0Xmit Q: 0 0 0The items in the top row of the "Stateful Failover Logical Update Statistics" section of the show failover command are as follows:
•
Stateful Obj—PIX Firewall stateful object
•
xmit—Number of transmitted packets to the other unit
•
xerr—Number of errors that occurred while transmitting packets to the other unit
•
rcv—Number of received packets
•
rerr—Number of errors that occurred while receiving packets from the other unit
The items in the first column provide an object static count for each statistic:
•
General—Sum of all stateful objects
•
sys cmd—Logical update system commands; for example, LOGIN and Stay Alive
•
up time—Up time, which the Active unit passes to the Standby unit
•
xlate—Translation information
•
tcp conn—CTCP connection information
•
udp conn—Dynamic UDP connection information
•
ARP tbl—Dynamic ARP table information
•
RIF Tbl—Dynamic router table information
The items in the "Logical Update Queue Information" list the current, maximum, and total number of packets in the receive (Recv) and transmit (Xmit) queues.
Step 15
If you want to set a time shorter than 15 seconds for the units to exchange "hello" packets to ensure each unit is available, use the failover poll seconds command. The default is 15 seconds. The minimum value is 3 seconds and the maximum is 15 seconds. Set to a lower value for Stateful Failover. With a faster poll time, PIX Firewall can detect failure and trigger failover faster. However, faster detection may cause unnecessary switchovers when the network is temporarily congested or a network card starts slowly.
Step 16
Power on the secondary unit. As soon as the secondary unit starts, the primary unit recognizes it and starts synchronizing the configurations. As the configurations synchronize, the messages "Sync Started" and "Sync Completed" appear.
Step 17
After the Standby unit comes up, use the show failover command on the primary unit to verify status:
show failoverFailover OnCable status: Other side powered offReconnect timeout 0:00:00Poll frequency 15 secondsThis host: Primary - ActiveActive time: 510 (sec)Interface 4th (172.16.1.1): NormalInterface intf3 (192.168.3.1): NormalInterface intf2 (192.168.2.1): NormalInterface outside (192.168.1.1): NormalInterface inside (10.1.1.1): NormalOther host: Secondary - StandbyActive time: 0 (sec)Interface 4th (172.16.1.2): NormalInterface intf3 (192.168.3.2): NormalInterface intf2 (192.168.2.2): NormalInterface outside (192.168.1.2): NormalInterface inside (10.1.1.2): NormalStateful Failover Logical Update StatisticsLink : 4thStateful Obj xmit xerr rcv rerrGeneral 0 0 0 0sys cmd 0 0 0 0up time 0 0 0 0xlate 0 0 0 0tcp conn 0 0 0 0udp conn 0 0 0 0ARP tbl 0 0 0 0RIP Tbl 0 0 0 0Logical Update Queue InformationCur Max TotalRecv Q: 0 0 0Xmit Q: 0 0 0Step 18
Use the write memory to save the configuration to Flash memory and to synchronize the configuration on the Standby unit with the primary unit.
Verifying That the Configuration Was Successful
Follow these steps to verify that the configuration was successful:
Step 1
If you have access to a syslog server, such as a UNIX system, enable logging so you can view the syslog messages as you proceed with the steps that follow. For information on syslog messages, refer to System Log Messages for the Cisco Secure PIX Firewall Version 6.0, which is available online at the following site:
http://www.cisco.com/univercd/cc/td/doc/product/iaabu/pix/pix_v53/index.htm
Additional information on syslog is available on the logging command page in "Command Reference."
To enable logging to a server with the example address 10.1.1.5 on the inside interface, use these commands:
logging host inside 10.1.1.5logging trap debugginglogging onThe logging trap debugging command statement lets all levels of syslog messages be sent, which can produce a large number of messages on a system in production, but is very helpful for debugging. When you are done testing failover, use the logging trap error command to reduce the number of syslog messages to only those messages displaying an alert, critical condition, or error.
Step 2
Test the secondary unit by turning off the primary unit.
Step 3
Use the show failover command to verify that the secondary unit is now active.
Step 4
Use FTP to send a file between hosts on different interfaces.
Step 5
Use the show interface command to verify that traffic is being processed.
Step 6
You can also use the debug fover option command. Choose an option from the following Table 3-1:
Step 7
When ready, power on the primary unit and it will take over automatically as the active unit.
Upgrading Failover from a Previous Version
Use the steps that follows to upgrade failover for Pix that uses floppy drive to boot image:
Step 1
Connect a separate console to the primary unit and one to the secondary unit.
Step 2
Insert the PIX Firewall version's diskette into the primary unit. Enter the reload command at the primary unit.
Step 3
As the primary unit reboots, PIX Firewall prompts you to write the image to Flash memory. Before entering a reply, read the next three substeps and be ready to move quickly to complete them. When ready, enter y for yes at the prompt.
a.
Immediately remove the diskette from the primary unit and insert it into the Standby unit. Locate the reset button on the front of the Standby unit.
b.
When the PIX Firewall Cisco banner appears on the primary unit's console, press the reset button on the Standby unit to load the new image.
c.
On the primary unit, enter the show failover command to make sure the primary unit is active and the secondary unit is in Standby mode after the upgrade of the primary unit.
Step 4
Wait for the Standby unit to finish booting. Once the Standby unit is up, the two units synchronize during which time the primary unit's console does not accept input. On the Standby unit, use the show failover command to monitor progress. When both PIX Firewall units report Normal, the replication is done.
Complete the following steps for a PIX Firewall with a bios extension installed, which can TFTP from the monitor mode:
Step 1
Connect a separate console to the primary unit and one to the secondary unit.
Step 2
Reload both PIX Firewallunits, and bring them to monitor mode.
Step 3
On the primary unit, use monitor mode TFTP to load the new PIX Firewall image. You will want to save the image to Flash memory and let it boot up. Enter a show failover command to ensure everything looks fine.
Step 4
Repeat Step 3 on the secondary unit.
Step 5
Once the standby (secondary) unit completes booting and is up, the active (primary) unit will start to synchronize the configuration from the primary unit to the secondary. Wait until the configuration replication is finished, then use the show failover command on both PIX Firewall units to ensure the failover is running correctly.
Note
Steps above can be done using boot-helper disk as well. Just insert the boot-helper disks on both PIX Firewalls, reload, then complete steps 3-5.
Additional Failover Information
This section includes the following topics:
•
Frequently Asked Failover Questions
Failover Communication
Both units in a failover pair communicate through the failover cable, which is a modified RS-232 serial link cable that transfers data at 117,760 baud (115K). The data provides the unit identification of primary or secondary, the power status of the other unit, and serves as a communication link for various failover communications between the two units.
The two units send special failover "hello" packets to each other over all network interfaces and the failover cable every 15 seconds. The failover poll seconds command allows you to determine how long failover waits before sending special failover "hello" packets between the primary and Standby units over all network interfaces and the failover cable. The default is 15 seconds. The minimum value is 3 seconds and the maximum is 15 seconds. Set to a lower value for Stateful Failover. With a faster poll time, PIX Firewall can detect failure and trigger failover faster. However, faster detection may cause unnecessary switchovers when the network is temporarily congested or a network card starts slowly.
The failover feature in PIX Firewall monitors failover communication, the power status of the other unit, and hello packets received at each interface. If two consecutive hello packets are not received within a time determined by the failover feature, failover starts testing the interfaces to determine which unit has failed, and transfers active control to the Standby unit.
You can choose the Stateful Failover option if you have 100 Mbps LAN interfaces so that connection states are automatically relayed between the two units.If you are using Stateful Failover, connection states are relayed from the primary unit to the secondary unit. Without Stateful Failover, the Standby unit does not maintain the state information of each connection. This means that all active connections will be dropped when failover occurs and that client systems must reestablish connections.
What Causes Failover?
If a failure is due to a condition other than a loss of power on the other unit, failover will begin a series of tests to determine which unit failed. This series of tests will begin when "hello" messages are not heard for two consecutive 15-second intervals (the interval depends on how you set the failover poll command). Hello messages are sent over both network interfaces and the failover cable.
The purpose of these tests is to generate network traffic in order to determine which (if either) unit has failed. At the start of each test, each unit clears its received packet count for its interfaces. At the conclusion of each test, each unit looks to see if it has received any traffic. If it has, the interface is considered operational. If one unit receives traffic for a test and the other unit does not, the unit that received no traffic is considered failed. If neither unit has received traffic, then go to the next test.
Note
If the failover IP address has not been set, failover does not work, and the Network Activity, ARP, and Broadcast ping tests are not performed.
Failover uses the following tests to determine if the other unit is available:
•
Link Up/Down test—This is a test of the NIC card itself. If an interface card is not plugged into an operational network, it is considered failed (for example, a switch failed, has a failed port, or a cable is unplugged).
•
Network Activity test—This is a received network activity test. The unit will count all received packets for up to 5 seconds. If any packets are received at any time during this interval, the interface is considered operational and testing stops. If no traffic is received, the ARP test begins.
•
ARP test—The ARP test consists of reading the unit's ARP cache for the 10 most recently acquired entries. One at a time the unit sends ARP requests to these machines attempting to stimulate network traffic. After each request the unit counts all received traffic for up to 5 seconds. If traffic is received, the interface is considered operational. If no traffic is received, an ARP request is sent to the next machine. If at the end of the list no traffic has been received, the ping test begins.
•
Broadcast Ping test—The ping test consists of sending out a broadcast ping request. The unit then counts all received packets for up to 5 seconds. If any packets are received at any time during this interval, the interface is considered operational and testing stops. If no traffic is received, the testing starts over again with the ARP test.
Configuration Replication
The two PIX Firewall units must be configured exactly the same and running the same software release. Configuration replication occurs over the failover cable from the Active unit to the Standby unit in three ways:
•
When the Standby unit completes its initial bootup, the Active unit replicates its entire configuration to the Standby unit.
•
As commands are entered on the Active unit they are sent across the Failover Cable to the Standby unit.
•
Entering the write standby command on the Active unit forces the entire configuration in memory to be sent to the Standby unit.
The configuration replication only occurs from memory to memory. After replication, use the write memory command to write the configuration into Flash memory. Because the failover cable is used, the replication can take a long time to complete with a large configuration. If a switchover occurs during the replication, the new Active unit will have a partial configuration. The unit will reboot itself to recover the configuration from the Flash or re-synchronize with the other unit. When the replication starts, the PIX Firewall console displays the message "Sync Started," and when complete, displays the message "Sync Completed." During the replication, information cannot be entered on the PIX Firewall console.
Stateful Failover
The Stateful Failover feature passes per-connection stateful information to the Standby unit. After a failover occurs, the same connection information is available at the new Active unit. End user applications are not required to do a reconnect to keep the same communication session.
The state information passed to the Standby unit includes the global pool addresses and status, connection and translation information and status, the negotiated H.323 UDP ports, the port allocation bit map for PAT, and other details necessary to let the Standby unit take over processing if the primary unit fails.
Depending on the failure, the PIX Firewall takes from 15 to 45 seconds to cause a switchover. Applications not handled by Stateful Failover will then require time to reconnect before the Active unit becomes fully functional.
Stateful Failover requires a dedicated interface on each PIX Firewall, with a minimum connection speed of 100 Mbps full-duplex, to be used exclusively for passing state information between the two PIX Firewall units.
The Stateful Failover interface can be connected to any of the following:
•
Cat 5 crossover cable directly connecting the primary unit to the secondary unit.
•
100BaseTX half duplex switch using straight Cat 5 cables.
•
100BaseTX full duplex on a dedicated switch or dedicated VLAN of a switch.
•
1000BaseTx full duplex on a dedicated switch or dedicated VLAN of a switch.
Data is passed over the dedicated interface using IP protocol 105. No hosts or routers should be on this interface.
Figure 3-1 shows two PIX Firewall units connected for use with Stateful Failover.
Figure 3-1 Stateful Failover Minimum Setup
Note
All enabled interfaces must be connected between the Active and Standby units. If an interface is not in use, use the shutdown option to the interface command to disable the interface.
Disabling Failover
You can disable failover with the no failover command. If failover is disabled, the following messages display when you enter the show failover command:
show failoverFailover OffCable Status: My side not connectedReconnect timeout: 0:00:00Failover Usage Notes
The following notes apply to the use of failover on the PIX Firewall:
1.
When a failover cable connects two PIX Firewall units, the no failover command disables failover until you enter the failover command to explicitly enable failover. Previously, when the failover cable connected two PIX Firewall units and you entered the no failover command, failover would automatically re-enable after 15 seconds.
If you reboot the PIX Firewall without entering the write memory command and the failover cable is connected, failover mode automatically enables.
2.
Perform the following on any switch that connects to the PIX Firewall:
a.
Enable portfast on all ports on the switch that connect directly to the PIX Firewall.
b.
Turn off trunking on all ports on the switch that connect directly to the PIX Firewall.
c.
Turn off channeling on all ports on the switch that connect directly to the PIX Firewall.
d.
Ensure the MSFC is not running a deferred Cisco IOS software version.
3.
The PIX Firewall failover unit is intended to be used solely for failover and not in standalone mode. If a failover unit is used in standalone mode, the unit will reboot at least once every 24 hours until the unit is returned to failover duty. When the unit reboots, the following message displays at the console:
=========================NOTICE ==========================This machine is running in secondary mode withouta connection to an active primary PIX. Pleasecheck your connection to the primary system.REBOOTING....==========================================================4.
If a failover-only PIX Firewall is not attached to a failover cable or is attached to the primary end of a failover cable, then it will hang at boot time. It must be a secondary unit.
5.
Changes made on the Standby unit are not replicated on the Active unit.
6.
Failover messages always have a syslog priority level of 2, which indicates a critical condition. Refer to the logging command description in "Command Reference," for more information on syslog messages. Refer to System Log Messages for the Cisco Secure PIX Firewall Version 6.0, available online. PIX Firewall documentation is available online at the following site:
http://www.cisco.com/univercd/cc/td/doc/product/iaabu/pix/index.htm
To receive SNMP syslog traps (SNMP failover traps), you must configure the SNMP agent to send SNMP traps to SNMP management stations, define a syslog host, and also have compiled the Cisco syslog MIB into your SNMP management station. See the snmp-server and logging command pages in "Command Reference," for more information.
Frequently Asked Failover Questions
This section contains some frequently asked questions about the failover features.
•
What happens when failover is triggered?
A switch can be initiated by either unit. When a switch takes place, each unit changes state. The newly Active unit assumes the IP address and MAC address of the previously Active unit and begins accepting traffic for it. The new Standby unit assumes the IP address and MAC address of the unit that was previously the Standby unit.
•
How is startup initialization accomplished between two units?
When a unit boots up, it defaults to Failover Off and secondary, unless the failover cable is present or failover has been saved in the configuration. The configuration from the Active unit is also copied to the Standby unit. If the cable is not present, the unit automatically becomes the Active unit. If the cable is present, the unit that has the primary end of the failover cable plugged into it becomes the primary unit by default.
•
How can both units be configured the same without manually entering the configuration twice?
Commands entered on the Active unit are automatically replicated on the Standby unit.
•
What happens if a primary unit has a power failure?
When the primary PIX Firewall unit experiences a power failure, the Standby PIX Firewall comes up in active mode. If the primary unit is powered on again it will become the Standby unit.
•
What constitutes a failure?
Fault detection is based on the following:
–
Failover hello packets are received on each interface. If hello packets are not heard for two consecutive 15 second intervals, the interface will be tested to determine which unit is at fault. (You can change this duration with the failover poll command.)
–
Cable errors. The cable is wired so that each unit can distinguish between a power failure in the other unit, and an unplugged cable. If the Standby unit detects that the Active unit is turned off (or resets), it will take active control.
If the cable is unplugged, a syslog is generated but no switching occurs. An exception to this is at bootup, at which point an unplugged cable will force the unit active. If both units are powered on without the failover cable installed they will both become active creating a duplicate IP address conflict on your network. The failover cable must be installed for failover to work correctly.
–
Failover communication. The two units share information every 15 seconds, but you can change this duration with the failover poll command. If the Standby unit does not hear from the Active unit in two communication attempts (and the cable status is OK) the Standby unit will take over as active.
•
How long does it take to detect a failure?
–
Network errors are detected within 30 seconds (two consecutive 15-second intervals).
–
Power failure (and cable failure) is detected within 15 seconds.
–
Failover communications errors are detected within 30 seconds (two consecutive 15-second intervals).
•
What maintenance is required?
Syslog messages will be generated when any errors or switches occur. Evaluate the failed unit and fix or replace it.
Stateful Failover Questions
•
What causes Stateful Failover to occur?
–
A power off or a power down condition on the Active PIX Firewall.
–
Reboot of the Active PIX Firewall.
–
A link goes down on the Active PIX Firewall for more than twice the configured poll time or a maximum of 30 seconds.
–
"Failover active" on the Standby PIX Firewall.
–
Block memory exhaustion for 15 consecutive seconds or more on the Active unit.
•
What information is replicated to the Standby PIX Firewall on Stateful Failover?
–
The configuration.
–
TCP connection table including timeout information of each connection.
–
Translation (xlate) table.
–
System up time; that is, the system clock is synchronized on both PIX Firewall units.
•
What information is not replicated to the Standby PIX Firewall on Stateful Failover?
–
The user authentication (uauth) table.
–
The ISAKMP and IPSec SA table.
–
The ARP table.
–
Routing information.
•
What are Stateful Failover hardware requirements?
–
Two identical PIX Firewall units are required.
–
You must connect the LAN ports for Stateful Failover on both PIX Firewall units with a crossover cable or through a switch. A minimum interface speed of 100 Mbps full-duplex is required for the Stateful Failover ports.
–
For better performance, a PIX 520 or later model of PIX Firewall is recommended.
–
You need a failover cable to connect the two failover ports on both PIX Firewall units.
•
What are Stateful Failover hardware restrictions?
–
The failover cable must be installed and work correctly.
–
The dedicated failover ports on both PIX Firewall units must be connected and fully functional.
•
What are Stateful Failover software requirements?
–
PIX Firewall version 5.1 or later is required for Stateful Failover.
–
Both PIX Firewall units must run the same version of PIX Firewall software.
•
What are Stateful Failover license requirements?
–
Stateful Failover requires a feature-based license key with failover feature support or connection-based license key.
IDS Syslog Messages
PIX Firewall lists single-packet (called "atomic") Cisco Secure Intrusion Detection System (formerly known as NetRanger) signature messages via syslog. Refer to PIX Firewall System Log Messages, Version 6.0 for a list of the supported messages. You can view this document online at the following site:
http://www.cisco.com/univercd/cc/td/doc/product/iaabu/pix/pix_60/syslog/index.htm
All signature messages are not supported by PIX Firewall in this release. IDS syslog messages all start with %PIX-4-4000nn and have the following format:
%PIX-4-4000nn IDS:sig_num sig_msg from ip_addr to ip_addr on interface int_nameFor example:
%PIX-4-400013 IDS:2003 ICMP redirect from 10.4.1.2 to 10.2.1.1 on interface dmz%PIX-4-400032 IDS:4051 UDP Snork attack from 10.1.1.1 to 192.168.1.1 on interface outsideOptions:
sig_num
The signature number. Refer to the Cisco Secure Intrusion Detection System Version 2.2.1 User Guide for more information. You can view the "NSDB and Signatures" chapter from this guide at the following site:
http://www.cisco.com/univercd/cc/td/doc/product/iaabu/csids/csids1/csidsug/index.htm
sig_msg
The signature message—approximately the same as the NetRanger signature message.
ip_addr
The local to remote address to which the signature applies.
int_name
The name of the interface on which the signature originated.
You can determine which messages display with the following commands:
ip audit signature signature_number disable
Attaches a global policy to a signature. Used to disable or exclude a signature from auditing.
no ip audit signature signature_number
Removes the policy from a signature. Used to reenable a signature.
show ip audit signature [signature_number]
Displays disabled signatures.
ip audit info [action [alarm] [drop] [reset]]
Specifies the default action to be taken for signatures classified as informational signatures.
The alarm option indicates that when a signature match is detected in a packet, PIX Firewall reports the event to all configured syslog servers. The drop option drops the offending packet. The reset option drops the offending packet and closes the connection if it is part of an active connection. The default is alarm. To cancel event reactions, specify the ip audit info command without an action option.
no ip audit info
Sets the action to be taken for signatures classified as informational and reconnaissance to the default action.
show ip audit info
Displays the default informational actions.
ip audit attack [action [alarm] [drop] [reset]]
Specifies the default actions to be taken for attack signatures. The action options are as previously described.
no ip audit attack
Sets the action to be taken for attack signatures to the default action.
show ip audit attack
Displays the default attack actions. An audit policy (audit rule) defines the attributes for all signatures that can be applied to an interface along with a set of actions. Using an audit policy the user may limit the traffic that is audited or specify actions to be taken when the signature matches. Each audit policy is identified by a name and can be defined for informational or attack signatures. Each interface can have two policies; one for informational signatures and one for attack signatures. If a policy is defined without actions, then the configured default actions will take effect. Each policy requires a different name.
ip audit name audit_name info [action [alarm] [drop] [reset]]
All informational signatures except those disabled or excluded by the ip audit signature command are considered part of the policy. The actions are the same as described previously .
no ip audit name audit_name [info]
Remove the audit policy audit_name.
ip audit name audit_name attack [action [alarm] [drop] [reset]]
All attack signatures except those disabled or excluded by the ip audit signature command are considered part of the policy. The actions are the same as described previously.
no ip audit name audit_name [attack]
Removes the audit specification audit_name.
show ip audit name [name [info | attack]]
Displays all audit policies or specific policies referenced by name and possibly type.
ip audit interface if_name audit_name
Applies an audit specification or policy (via the ip audit name command) to an interface.
no ip audit interface [if_name]
Removes a policy from an interface.
show ip audit interface
Displays the interface configuration.
PPTP Virtual Private Networks
PIX Firewall provides support for Microsoft PPTP, which is an alternative to IPSec handling for VPN Clients. While PPTP is less secure than IPSec, PPTP is easier to implement and maintain.
This section contains the following topics:
•
Introduction to PPTP Configuration
Introduction to PPTP Configuration
The vpdn command implements the PPTP feature for inbound connections between the PIX Firewall and a Windows client. Point-to-Point Tunneling Protocol (PPTP) is a layer 2 tunneling protocol which lets a remote client use a public IP network to communicate securely with servers at a private corporate network. PPTP tunnels the IP protocol. RFC 2637 describes the PPTP protocol.
Support is provided for only inbound PPTP and only one PIX Firewall interface can have the vpdn command enabled.
Supported authentication protocols include: PAP, CHAP, and MS-CHAP using external AAA (RADIUS or TACACS+) servers or the PIX Firewall local username and password database. Through the PPP IPCP protoco


