Linux in the Medical SOHO

Total Page:16

File Type:pdf, Size:1020Kb

Linux in the Medical SOHO Linux in the Medical SOHO 1 Linux in the Medical SOHO: The Application of Linux in the Small Medical Office Steven Marcus East Carolina University DTEC 6870 Summer 2005 Linux in the Medical SOHO 2 Abstract This paper examines the small medical office and its balance of a need for internet connectivity with ever increasing security demands for medical information. This balancing act is nothing new and can be approached with excellent solutions from numerous vendors. However, these solutions, although effective, are many times cost prohibitive for a small office with only a few employees. The Linux operating system has been growing steadily in use for the past decade driven partially by the fact that the operating system itself is free. This paper considers whether Linux is an appropriate tool to use in the small medical office for controlling access to the internet, protecting the office and its information from intruders, and for connecting virtual private networks to remote hosts and networks. Linux in the Medical SOHO 3 Linux in the Medical SOHO: The Application of Linux in the Small Medical Office The past decade has seen drastic changes in the ways that information is handled, stored, and used. Perhaps nowhere is this seen better than in the medical profession. Information has traditionally been vital in medicine, but against a backdrop of today’s legal climate for medicine, medical information takes on a whole new level of importance. Historically, medical offices stored huge amounts of data in paper format, and medical transcription was done at the office. The PC revolution allowed records to be stored digitally and made medical transcription an ideal job to be telecommuted to the home office. Broadband internet connections now allow medical offices to quickly share information with transcriptionists, hospitals and other offices. Although these advances have been seen as a boon to the industry, security quickly became an issue to be addressed. Adding to the complexity of data in medicine, on April 21, 2005, medical information security moved from being just an ethical issue to a legal one. This was the deadline for compliance with HIPAA. (Amatayakul, 2004, p. 58) HIPAA is the Health Insurance Portability and Accountability Act. The federal registry states that the integrity, confidentiality and availability of health care information must be assured. (Federal Registry, Feb. 20, 2003). For this reason, all health care fields including insurance companies are now very concerned about the security of their data. The web site for the American Medical Association describe penalties for violations that range from small fines to very large fines and prison time. For example, the penalty for willingly disclosing individually identifying medical information can be a ten thousand dollar fine and a year in prison. The more serious offence of disclosing or selling Linux in the Medical SOHO 4 individually identifiable medical information for personal gain or to harm someone allow for fines of up to two hundred fifty thousand dollars and ten years in prison. Clearly, these examples indicate criminal intent which more than likely would not be present in the average small medical office, but the examples do serve to show the seriousness of lawmakers. Compared to criminal penalties, civil penalties can range from one hundred to twenty-five thousand dollars per year. Even the Department of Health and Human Services can exclude any entity that does not comply from participation in Medicare. Since there are very few offices where all patients pay entirely in cash, this alone is a very big reason to devote whatever effort is necessary to comply. (HIPAA Violations and Enforcement, 2005) In light of these security violation penalties, businesses are responding. The ‘CIO Decisions’ web site reports that ‘over 60% of small to medium sized hospitals will increase their IT staff in 2005, largely to comply with HIPAA.’ (CIO Decisions, July 2005) Accordingly, even the way that medical office technology and transcription is taught in community colleges is changing due to HIPAA. According to Donnah Cole, RHIA, instructor at Asheville Buncombe Technical Community college in Asheville, North Carolina, instructors now have to spend a proportion of class time teaching this subject, which did not even exist five years ago. (personal communication, June 2005). Given these security problems, network administrators in the health care field have many different options to attack this challenge. Most of the large networking companies such as Cisco, Lucent, and Microsoft offer hardware and software solutions that are robust, reliable, and work out of the box. These solutions work well for larger hospitals and companies with budgets that can withstand the large price tags of the products, but there are many smaller businesses in this industry. For these companies, Linux in the Medical SOHO 5 Linux, a free operating system with the ability to perform the job of firewall and router (as well as others), can be an attractive solution. Linux is an operating system that has grown steadily in the past decade mainly within the computer science community, but now with backers such as IBM and Novell, Linux is gaining serious ground in the business world. In 1991, Linus Torvalds wrote a kernel for the unix-like operating system and joined it with many existing software programs from a project named GNU. The project all together took on Torvalds’ name and grew quickly on the internet as Linux. From the onset, the whole project was open- source and free. The fact that it is free makes it appealing from a fiscal standpoint, and the fact that it is open-source means that everyone can read the code that programs are made from, meaning anyone can improve upon it or find problems. Many would argue that this makes Linux more secure. In order to connect a local network to the internet, the routing function must be performed, a service for which Linux is well suited. A router keeps local packets local and passes packets with remote destinations out to the internet. Linux can perform routing at the kernel level as long as two or more network interface cards are installed in the computer and configured correctly. Using RedHat Linux, a file named / proc/sys/net/ipv4/ip_forward is set to 1 and this begins the process of routing. To make this permanent, the file /etc/sysctl.conf must be modified to turn this on at boot time. Normally when connecting a local network to the internet, the local network is Ethernet, but the broadband connection to the internet can be several different things. Linux can use most any type of network card and many are available for connections such as T1, frame-relay and DSL. Linux magazines even advertise components for this purpose specifically. Linux in the Medical SOHO 6 The function of firewall must also be addressed. According to webopedia, a firewall is ‘a system designed to prevent unauthorized access to or from a private network’. (webopedia) Routers and firewalls both perform this function through the use of Access Control Lists (ACLs). An ACL is filter in the form of a statement that specifies either hosts or networks as sources or destinations, protocols and whether these packets should be passed or dropped. A typical ACL for a Cisco router would read: access-list 101 permit tcp host 192.168.33.1 host 192.168.0.1 eq www A similar access-list in linux would be something similar to: iptables –A FORWARD –s 192.168.33.1 –d 192.168.0.1 –p tcp – dport 80 –j ACCEPT Though the syntax is somewhat different, it is fairly easy to translate from one statement to the other. In this way, the firewall can permit only web or e-mail traffic through and prevent hosts outside the network from making connections to hosts inside. The Linux computer itself can also protect itself from unwanted access through ACLs or simply by turning off processes that have opened ports and are unneeded. Since routers are normally stand alone appliances, they do not generally have as much power, storage, or RAM space as a computer would have. The larger platform is one of the reasons that Linux has a more robust filtering system. A Linux computer can also perform the function of Network Address Translation or NAT. Sometimes called PAT or Port Address Translation (notably by Cisco), or IP masquerading, NAT translates all internal private network addresses into a single public address when sending packets out to the internet. This translation prevents computers Linux in the Medical SOHO 7 external to the local network from seeing the address of the local computers. A Linux computer would implement this with the command iptables –A POSTROUTING –t NAT –o 204.204.1.1 –s 192.168.0.0/24 –d 0/0 –j MASQUERADE In this instance 204.204.1.1 is the public interface connected to the internet and would be the only address seen by external computers and 192.168.0.0 would be the local network. HIPAA specifies that data is to be encrypted if it leaves the local network, for example to go out onto the internet. HIPAA is intentionally vague about how this is to be done, but the task is obviously well suited to VPNs. A Virtual Private Network is a private network that is constructed using a publicly accessible network like the internet. An alternative to a VPN would be to purchase point-to-point links from the local network to any remote hosts or networks. This solution, while very secure, can quickly become cost prohibitive. The concept of a VPN is simple: both sides of the VPN should have a connection to the internet, and then an encrypted ‘tunnel’ is built to pass information through.
Recommended publications
  • Allow Split Tunneling for VPN Clients on the ASA Configuration Example
    ASA/PIX: Allow Split Tunneling for VPN Clients on the ASA Configuration Example Contents Introduction Prerequisites Requirements Components Used Network Diagram Related Products Conventions Background Information Configure Split Tunneling on the ASA Configure the ASA 7.x with Adaptive Security Device Manager (ASDM) 5.x Configure the ASA 8.x with Adaptive Security Device Manager (ASDM) 6.x Configure the ASA 7.x and later via CLI Configure PIX 6.x through the CLI Verify Connect with the VPN Client View the VPN Client Log Test Local LAN Access with Ping Troubleshoot Limitation with Number of Entries in a Split Tunnel ACL Related Information Introduction This document provides step-by-step instructions on how to allow VPN Clients access to the Internet while they are tunneled into a Cisco Adaptive Security Appliance (ASA) 5500 Series Security Appliance. This configuration allows VPN Clients secure access to corporate resources via IPsec while giving unsecured access to the Internet. Note: Full tunneling is considered the most secure configuration because it does not enable simultaneous device access to both the Internet and the corporate LAN. A compromise between full tunneling and split tunneling allows VPN Clients local LAN access only. Refer to PIX/ASA 7.x: Allow Local LAN Access for VPN Clients Configuration Example for more information. Prerequisites Requirements This document assumes that a working remote access VPN configuration already exists on the ASA. Refer to PIX/ASA 7.x as a Remote VPN Server using ASDM Configuration Example if one is not already configured. Components Used The information in this document is based on these software and hardware versions: ● Cisco ASA 5500 Series Security Appliance Software version 7.x and later ● Cisco Systems VPN Client version 4.0.5 Note: This document also contains the PIX 6.x CLI configuration that is compatible for the Cisco VPN client 3.x.
    [Show full text]
  • Channel 5'S “Jailbreak” Encourages Breakouts, As Cisco Secure PIX
    \ e Channel 5’s “Jailbreak” encourages breakouts, as Cisco Secure PIX Firewall l i f defends against break-ins o r P r e m o t s u VOTE OFF “SURVIVOR,” RESIST “TEMPTATION ISLAND,” AND BURY “THE MOLE.” IN C THE U.K., THE BIG REALITY TV HIT WAS A SHOW CALLED “JAILBREAK.” THE SHOW AIRED ON CHANNEL 5 WHERE, FOR THREE WEEKS LAST SEPTEMBER, ORDINARY PEOPLE WE RE P LA CED IN A N ESPE CIALL Y BU IL T JAIL AN D ENT IC ED W IT H LAR GE SUM S OF MONEY-100,000 POUNDS, OR $150,000-TO BE THE FIRST TO BREAK OUT. A KEY FACTOR IN THE SHOW’S SUCCESS WAS THE JAILBREAK WEB SITE. The Jailbreak Web site broadcast streaming video of the GE Capital IT Solutions specializes in augmenting Internet “prisoners” 24 hours a day and also gave viewers a chance to and IT infrastructures with a wide range of solutions play games and e-mail breakout advice to the contestants. including planning, acquisition, implementation, management, and refreshment. Although the Channel 5 producers of “Jailbreak” were confident that the show would be successful, they were GE Capital IT Solutions chooses Cisco Secure PIX Firewalls totally surprised at the popularity of its Web site. It received From the start, security was an issue with the Channel 5 Web about one million hits a day-10 million hits in the first week! site. “Our primary purpose was to generate a lot of publicity for the show throughout the U.K.,” says Davis.
    [Show full text]
  • How Cisco IT Uses Firewalls to Protect Cisco Internet Access Locations
    Cisco IT Case Study PIX Firewall in Enterprise Network How Cisco IT Uses Firewalls to Protect Cisco Internet Access Locations Cisco PIX Security Appliance provides stateful firewall protection at smaller Internet gateways. Cisco IT Case Study / Security and VPN / PIX Firewall in Enterprise Network: This case study describes how Cisco Systems uses Cisco PIX security appliances to protect its network assets from unauthorized access. The Cisco global network is a leading-edge enterprise environment that is one of the largest and most complex in the world. Cisco customers can draw on Cisco IT's real-world experience in this area to help support similar enterprise needs. CHALLENGE “With its stateful-inspection capability, the Cisco PIX 525 Cisco Systems® gives a high priority to protecting its data and Security Appliance minimizes the IT network from unauthorized users, both outside and inside the burden by reducing the number of company. The accepted solution for many years has been to deploy a firewall in each of its multipeered Internet gateways entries in the ACLs for incoming and worldwide. A firewall, which can be hardware- or software- outgoing traffic. We’ve cut the based, examines network traffic and decides whether to previous burden in half because forward packets to their destinations based on access control Cisco PIX security appliances lists (ACLs) and inspection rules. automatically allow the return traffic for both incoming and outgoing Recently Cisco® IT began deploying Internet gateways at data ACLs and rules.” centers to better support remote-access VPN connectivity. Employees working remotely need improved access to the — Hasan Talukdar, Cisco IT network engineer company intranet, to link them directly to the nearest Cisco VPN gateway instead of sending packets by circuitous routes on the Internet.
    [Show full text]
  • Documentation Roadmap for Cisco Intrusion Prevention System 7.0
    Documentation Roadmap for Cisco Intrusion Prevention System 7.0 This documentation roadmap explains how to access IPS 7.0 documents and related documents on Cisco.com. You can find this documentation roadmap on Cisco.com with live links to the IPS documentation site and related security products sites by following the instructions in Accessing Cisco IPS Documentation, page 2. Contents • Cisco IPS 7.0 Documentation Set, page 1 • Accessing Cisco IPS Documentation, page 2 • Related Documentation, page 3 • Obtaining Documentation and Submitting a Service Request, page 3 Cisco IPS 7.0 Documentation Set Refer to the following documents for information on Cisco IPS 7.0. • For a list of caveats, documentation changes, and important last minute information: Release Notes for Cisco Intrusion Prevention System 7.0 • For information on installing and using Cisco IDM: Installing and Using Cisco Intrusion Prevention System Device Manager 7.0 • For information on installing and using Cisco IME: Installing and Using Cisco Intrusion Prevention System Manager Express 7.0 • For IPS CLI reference, including syntax and usage guidelines: Cisco Intrusion Prevention System Command Reference 7.0 • For CLI procedures: Configuring the Cisco Intrusion Prevention System Sensor Using the Command Line Interface 7.0 Americas Headquarters: Cisco Systems, Inc., 170 West Tasman Drive, San Jose, CA 95134-1706 USA © 2009 Cisco Systems, Inc. All rights reserved. Accessing Cisco IPS Documentation • For hardware installation: Installing Cisco Intrusion Prevention System Appliances and Modules 7.0 • For safety and regulatory information: Regulatory Compliance and Safety Information for the Cisco Intrusion Prevention System 4200 Series Appliance Sensor Accessing Cisco IPS Documentation You can find IPS documentation at this URL: http://www.cisco.com/en/US/products/hw/vpndevc/ps4077/tsd_products_support_series_home.html Or to access IPS documentation, follow these steps: Step 1 Log in to Cisco.com.
    [Show full text]
  • Documentation Roadmap for Cisco Intrusion Prevention System 6.1
    Documentation Roadmap for Cisco Intrusion Prevention System 6.1 This documentation roadmap explains how to access IPS documents and related documents on Cisco.com. Contents • Cisco IPS Documentation Set, page 1 • Accessing Cisco IPS Documentation, page 2 • Related Documentation, page 2 • Obtaining Documentation, Obtaining Support, and Security Guidelines, page 3 Cisco IPS Documentation Set Refer to the following documents for information on Cisco IPS 6.1. • For a list of caveats, documentation changes, and important last minute information: Release Notes for Cisco Intrusion Prevention System 6.1 • For information on installing and using Cisco IDM: Installing and Using Cisco Intrusion Prevention System Device Manager 6.1 • For information on installing and using Cisco IME: Installing and Using Cisco Intrusion Prevention System Manager Express 6.1 • For IPS CLI reference, including syntax and usage guidelines: Command Reference for Cisco Intrusion Prevention System 6.1 • For CLI procedures: Configuring the Cisco Intrusion Prevention System Sensor Using the Command Line Interface 6.1 Americas Headquarters: Cisco Systems, Inc., 170 West Tasman Drive, San Jose, CA 95134-1706 USA © 2006-2008 Cisco Systems, Inc. All rights reserved. Accessing Cisco IPS Documentation Accessing Cisco IPS Documentation You can find IPS documentation at this URL: http://www.cisco.com/en/US/products/hw/vpndevc/ps4077/tsd_products_support_series_home.html Or to access IPS documentation, follow these steps: Step 1 Log in to Cisco.com. Step 2 Under Quick Links on the right side of the window, click Documentation. Step 3 Under Select a category, click Security, then under Select a sub-category, click IPS Appliances, then under Select a product, click Cisco IPS 4200 Series Sensors.
    [Show full text]
  • Norbert Nagy System, Network, Database Engineer, IT Security
    Curriculum Vitae PERSONAL INFORMATION Norbert Nagy CCNP number: 406594169553CRDL Hermannstädter Weg 37, 64295 Darmstadt (Germany) +49 6151 8614911 [email protected] nagy-consulting.eu Skype nnorcee JOB APPLIED FOR System, Network, Database Engineer, IT security specialist WORK EXPERIENCE January 2014 IT Network Engineer Hypotheken Bank Implementing Cisco Medianet and Performance Monitoring in the Network, via cisco flexible netflow and cisco prime infrastructure 2.0. Hardware/Tools: Cisco Catalyst Switches, ISR and ASR Switches, Cisco Prime Infrastructure 2.0 01 July 2013 – 28.02.2014 IT Network Engineer Messer Information Services, Gross Umstadt Datacenter analysis, (re)design, configuration, implementation. Optimization of the Voice network. Rebuilding 2 datacenters network architecture based on cisco nexus datacentre switches. Rebuilding and optimizing Checkpoint Firewall clusters. Hardware/Tools: Checkpoint 21000 mit core XL, Cisco Nexus 7000, 5548, Cisco Catalyst 6500, vPC, MPLS, OSPF, VSS, VRF, FEX, Policy based routing, troubleshooting 05 Sept 2013 – 30. Sept 2013 IT Network Engineer Robert Bosch GmbH, Stuttgart Design and Implementation in 2 Datacenters with 3 level firewall protection. (Internet, VPN and partners). Firewall clustering and VPN load balancing with Cisco ASA Firewalls. Routing and Switching with Cisco Catalyst und ASR devices. Central Radius and Tacacs+ authentication with Cisco ACS 5. Network interconnect between the 2 corporate networks. Project has been finished, because the migration has been finished. Hardware/Tools: Cisco Catalyst 6500, 3750, Cisco ASR 1000 series Routers, Cisco Blade Center Swtiches, MPLS, OSPF, VRF, ASA 5525X, 5545X, Troubleshooting, Ipsec and SSL VPN, NAT, Cisco ACS 5.3 Nagy-consulting.eu Page 1 / 7 Curriculum Vitae 01 April 2013 – 31.
    [Show full text]
  • Cisco PIX Firewall Series
    Cisco PIX Firewall Series Product Overview The Cisco PIX Firewall series delivers strong security in an easy-to-install, integrated hardware/software firewall appliance that offers outstanding performance. Cisco’s world-leading PIX Firewall family spans the entire user application spectrum, from cost-conscious desktop firewalls for remote offices to carrier-class gigabit firewalls for the most demanding enterprise and service provider environments. Cisco PIX Firewalls deliver superior performance of up to 500,000 simultaneous connections and nearly 1.7 Gigabits per second (Gbps) aggregate throughput—while providing Cisco customers world-class security, reliability and customer service. Key Features and Benefits • Security — Cisco PIX Firewalls are purpose-built firewall appliances that utilize a proprietary, hardened operating system which eliminates security risks associated with general purpose operating systems. PIX firewalls also provide the latest in security technology ranging from stateful inspection firewalling, IPsec and L2TP/PPTP-based VPNs, content filtering capabilities, and integrated intrusion detection to help secure your network environment from next-generation attacks. At the heart of the PIX Firewall family is the adaptive security algorithm (ASA), which maintains the secure perimeters between the networks controlled by the firewall. The stateful, connection-oriented ASA design creates session flows based on source and destination addresses, TCP sequence numbers (which are non-predictable), port numbers, and additional TCP flags. All inbound and outbound traffic is controlled by applying security policies to each connection table entry. • Performance — Cisco PIX firewall’s highly scalable, yet very secure architecture based upon stateful inspection technology and application-aware "fixups" provides state-of-the-art performance and robust security.
    [Show full text]
  • Cisco PIX Firewall Release Notes, Version 6.3(1)
    Cisco PIX Firewall Release Notes Version 6.3 March 2003 Contents This document includes the following sections: • Introduction, page 1 • System Requirements, page 3 • New and Changed Information in Version 6.3, page 7 • Important Notes, page 18 • Caveats, page 20 • Obtaining Documentation and Submitting a Service Request, page 24 Introduction The PIX Firewall delivers unprecedented levels of security, performance, and reliability, including robust, enterprise-class security services such as the following: • Stateful inspection security, based on state-of-the-art Adaptive Security Algorithm (ASA) • Over 100 predefined applications, services, and protocols for flexible access control • Virtual Private Networking (VPN) for secure remote network access using IKE/IPSec standards • Intrusion protection from over 55 different network-based attacks • URL filtering of outbound web traffic through third-party server support • Network Address Translation (NAT) and Port Address Translation Support (PAT) Corporate Headquarters: Cisco Systems, Inc., 170 West Tasman Drive, San Jose, CA 95134-1706 USA Copyright © 2003 Cisco Systems, Inc. All rights reserved. Introduction PIX Firewall Version 6.3 software provides the secure networking features included in previous releases and adds support for the following features: • Virtual LAN (VLAN)-based virtual interfaces, page 7 • OSPF Dynamic Routing, page 7 • Secure HyperText Transfer Protocol (HTTPS) Authentication Proxy, page 8 • Local User Authentication Database for Network and VPN Access, page 8 • HTTPS
    [Show full text]
  • Cisco PIX Device Manager Installation Guide Version 3.0
    Cisco PIX Device Manager Installation Guide Version 3.0 Corporate Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 526-4100 Text Part Number: 78-15483-01 THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS MANUAL ARE SUBJECT TO CHANGE WITHOUT NOTICE. ALL STATEMENTS, INFORMATION, AND RECOMMENDATIONS IN THIS MANUAL ARE BELIEVED TO BE ACCURATE BUT ARE PRESENTED WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. USERS MUST TAKE FULL RESPONSIBILITY FOR THEIR APPLICATION OF ANY PRODUCTS. THE SOFTWARE LICENSE AND LIMITED WARRANTY FOR THE ACCOMPANYING PRODUCT ARE SET FORTH IN THE INFORMATION PACKET THAT SHIPPED WITH THE PRODUCT AND ARE INCORPORATED HEREIN BY THIS REFERENCE. IF YOU ARE UNABLE TO LOCATE THE SOFTWARE LICENSE OR LIMITED WARRANTY, CONTACT YOUR CISCO REPRESENTATIVE FOR A COPY. The Cisco implementation of TCP header compression is an adaptation of a program developed by the University of California, Berkeley (UCB) as part of UCB’s public domain version of the UNIX operating system. All rights reserved. Copyright © 1981, Regents of the University of California. NOTWITHSTANDING ANY OTHER WARRANTY HEREIN, ALL DOCUMENT FILES AND SOFTWARE OF THESE SUPPLIERS ARE PROVIDED “AS IS” WITH ALL FAULTS. CISCO AND THE ABOVE-NAMED SUPPLIERS DISCLAIM ALL WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THOSE OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OR ARISING FROM A COURSE OF DEALING, USAGE, OR TRADE PRACTICE. IN NO EVENT SHALL CISCO OR ITS SUPPLIERS BE LIABLE FOR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, OR INCIDENTAL DAMAGES, INCLUDING, WITHOUT LIMITATION, LOST PROFITS OR LOSS OR DAMAGE TO DATA ARISING OUT OF THE USE OR INABILITY TO USE THIS MANUAL, EVEN IF CISCO OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES This document is to be used in conjunction with the appropriate documentation for your Cisco PIX Firewall system.
    [Show full text]
  • Cisco PIX Firewall VPN Accelerator Card Plus
    Data Sheet Cisco PIX Firewall VPN Accelerator Card Plus Overview higher security against brute-force attacks The VPN Accelerator Card Plus (VAC+) for than older 56-bit DES keys and can use the Cisco PIX® Firewall Series provides 192-bit and 256-bit keys as well. AES is high-performance tunneling and encryption computationally more efficient than DES services suitable for site-to-site and and can work at multiple network layers remote-access applications. This simultaneously. In October 2000 the hardware-based virtual private network National Institute of Standards and (VPN) accelerator is optimized to handle Technology (NIST) of the U.S. Department the repetitive but voluminous mathematical of Commerce selected AES as a new functions required for IP Security (IPSec). encryption technique for protecting Offloading encryption functions to the computerized information. It is expected to Cisco PIX Firewall VAC+ not only replace DES, which was adopted by the U.S. improves IPSec encryption processing, but Department of Defense in 1977. also maintains high-end firewall performance. As an integral component of High Performance the Cisco VPN solution, the Cisco PIX The Cisco PIX Firewall VAC+, which fits Firewall VAC+ provides platform into a PCI slot inside the Cisco PIX chassis, scalability and security while smoothly encrypts data using 56-bit DES; 168-bit working with the services necessary for Triple DES (3DES); and 128-, 192-, and successful VPN deployments—encryption, 256-bit AES algorithms at speeds up to 440 tunneling, and firewall. Mbps. A Cisco PIX Firewall equipped with a VAC+ can support as many as 2,000 Advanced Encryption Standard encrypted tunnels for concurrent sessions The Cisco PIX Firewall VAC+ adds with mobile users or other sites.
    [Show full text]
  • The PIX OS Command-Line Interface V1.11 – Aaron Balchunas 1
    The PIX OS Command-Line Interface v1.11 – Aaron Balchunas 1 - The PIX OS Command-Line Interface - PIX OS Versions The operating system for Cisco PIX/ASA firewalls is known as the PIX OS. Because the PIX product line was acquired and not originally developed by Cisco, PIX OS versions up to 6.0 featured a command-line interface that was similar to, but not exactly like, the Cisco IOS. Cisco blended features from the Cisco IOS and PIX OS to form PIX OS 7.0. While PIX OS 6.0 (and prior) and PIX OS 7.0 are similar, there are key differences, which will be reflected in this guide. Cisco ASA firewalls support PIX OS 7.0 exclusively. Basics of the PIX OS CLI As with the Cisco Router IOS, there are various modes in the PIX OS CLI, each of which contains a set of commands specific to the function of that mode. By default, the first mode you enter when logging into the PIX OS is User mode. User mode appends a “>” after the device hostname: pixfirewall> No configuration can be changed or viewed from User mode. Only basic status information can be viewed from this mode, and thus user mode is mostly used to authenticate to higher privileged modes. Privileged mode allows all configuration files, settings, and status information to be viewed. Privileged mode appends a “#” after the device hostname: pixfirewall> enable PASSWORD pixfirewall# Very little configuration can be changed directly from Privileged mode. Instead, to actually configure the Cisco device, one must enter Global Configuration mode: pixfirewall# config terminal pixfirewall(config)# * * * All original material copyright © 2007 by Aaron Balchunas ([email protected]), unless otherwise noted.
    [Show full text]
  • Pfsense Tutorial Slides (Application/Pdf
    pfSense Tutorial BSDCan 2008 From zero to hero with pfSense May 13, 2008 Chris Buechler <[email protected]> Scott Ullrich <[email protected]> History of pfSense Started as a work project 13 years ago when we needed a internal firewall Originally Linux, switched to FreeBSD 2.2 Evolution of this path shrunk the firewall down to a Soekris size Moatware was started Met Chris Buechler during this time Sell a number of products Sales guy moves to Florida Moatware fails Chris and myself debate starting over fresh pfSense is forked from m0n0wall roughly 4 years ago Still going strong today pfSense Overview Customized FreeBSD distribution tailored for use as a firewall and router. pfSense has many base features and can be extended with the package system including one touch installations of popular 3rd party packages such as SpamD (spam filter) and Squid (web caching). Includes many features found in commercial products such as Cisco PIX, Sonicwall, Watchguard, etc. Many support avenues available, mailing lists, forum and commercial support. Has the best price on the planet.... Free! pfSense Platforms Live CD Full Install Embedded Developers pfSense Stable Versions 1.0 - October 4, 2006 * 1.0.1 - October 20, 2006 * 1.2 - RELENG_1_2 - February 25, 2008 Downloaded more than 500,000 times to date * Not branched in CVS pfSense Development Versions Current Development Versions 1.3-ALPHA - RELENG_1 2.0-ALPHA-ALPHA-ALPHA - HEAD Snapshots are built every two hours available at http://snapshots.pfsense.org Bonus for attendees - 1.3 snapshots
    [Show full text]