NetScaler
Citrix Turbo Charges Cloud and Web Security with New NetScaler Product Line PDF 
Written by Administrator   
Monday, 01 March 2010 19:50
Bookmark and Share

New NetScaler Application Firewall Appliances Break Industry Records with Unmatched 5 Gbps Performance

Citrix Systems, Inc. today announced immediate availability of five new Citrix® NetScaler® Application Firewall appliances designed to bring a new level of security to public and private clouds and web applications. Each of the new appliances is built on the Citrix® NetScaler® MPX™ hardware platform, the application acceleration, load balancing and web-security system that powers thousands of enterprise datacenters and most of the world’s largest clouds and websites. With the introduction of this new offering, Citrix now provides solutions ranging from the 10 Mbps Citrix® NetScaler® VPX™ virtual appliance to a record breaking 5 Gbps with the NetScaler MPX hardware appliance - meeting the needs of small and large enterprises, managed security services providers (MSSPs) and cloud providers. In fact, the new appliances outperform throughput levels from the nearest competitor by two times across multiple performance metrics.

As more corporations consider cloud and web computing models, security tops the list of concerns. Regardless of whether companies adopt public clouds, private clouds or internal web applications, the dynamic nature of these environments make them far more attractive targets for hackers. In addition, sites that bill users for services over the web are now subject to strict new regulation from the Payment Card Industry Data Security Standard (PCI-DSS) which protects sensitive customer data. The combination of these trends has elevated web application firewalls from a “nice-to-have” feature, to a business necessity. The new Citrix product line enables enterprise and cloud customers to apply broad application security to both web and Web 2.0 applications, while making the cloud a safer place to do business.

“It is increasingly important to focus on security especially as companies move more toward cloud and web computing models,” Cindy Borovick, Research Vice President for IDC's Datacenter Networks service. “With a product offering such as the NetScaler Application Firewall appliance, Citrix will have a nice play in two important adjacent markets signifying a shift for the Application Delivery market as it focuses more and more on foundational network services.”

In addition, the new application firewall models embrace the company’s unique Pay-as-You–Grow licensing model.This pricing model enables customers to purchase today a full-featured security solution that meets near-term performance requirements, with the knowledge that as demand grows, the network can easily be scaled up with a simple software license upgrade. The licensing flexibility, available on both NetScaler MPX hardware and NetScaler VPX virtual appliances, makes it an ideal complement to server virtualization, enabling customers to secure and scale the datacenter in the most efficient way possible.

Advanced Protection for Web 2.0 Applications

In addition to detecting and blocking application threats targeting traditional web applications, NetScaler Application Firewall incorporates advanced protections for Web 2.0 applications and services. The proliferation of Web 2.0 technologies among application developers is driving the need for more sophisticated security protections and greater native fluency of XML-based applications. NetScaler Application Firewall performs comprehensive HTML and XML security checks including:

  • XML denial of service (XDoS) to protect servers from malicious XML payloads by enforcing limits on the payload structure
  • Schema validation and format checks to verify proper data types on SOAP messages and XML payloads
  • SQL injection and cross site scripting
  • Attachment checks to block attachments with malicious executables or viruses
  • WS-I basic profile compliance

“Not only are traffic rates growing at an accelerating clip, but the number of attack types is increasing such that it is nearly impossible for IT security managers to keep up,” said Klaus Oestermann, group vice president and general manager, Cloud and Networking Product Group at Citrix Systems. “Our new NetScaler Application Firewall appliances not only provide advanced security protections, but also deliver the performance and scalability levels being requested by our customers.”

About the Citrix NetScaler Application Firewall

The NetScaler Application Firewall is a comprehensive and powerful security solution that blocks known and unknown attacks against web and web services applications. It utilizes a positive security model allowing only correct application behavior, without requiring constant updates of attack signatures. The NetScaler Application Firewall is ICSA certified and provides protection against a wide array of malicious attack techniques targeting application vulnerabilities, confidential data theft, denial of service, and web site defacement. It is available on NetScaler MPX hardware appliances. NetScaler Application Firewall is also included with the NetScaler VPX software appliance, further enhancing the company’s ability to offer cloud and web security as part of the industry’s only end-to-end networking virtualization solution.

Pricing and Availability

NetScaler Application Firewall is now available on MPX 5500, MPX 7500, MPX 9500, MPX 10500 and MPX 12500 appliances through Citrix Solution Advisors worldwide. Pricing begins at $20,000. Pay-as-You-Grow licensing is available for MPX 7500, MPX 9500 and MPX 10500 appliances.

 
Citrix NetScaler SMS Authentication PDF 
Written by Administrator   
Saturday, 27 February 2010 13:51
Bookmark and Share

Citrix NetScaler, the industry's most popular load balancer, can also be configured to use SMS authentication, with Citrix Receiver, XenApp and XenDesktop.
Citrix partner SMS passcode makes the SMS software, it is easy to install and easy to use. The Citrix Reciever already supports SMS Authentication.

In previous posts Citrix has shown how Authentication can be done at the Citrix Server Web Interface, or using LDAP. Now that Citrix Receiver runs on a variety of mobile devices, you can use SMS Authentication and Receiver on your device of choice.

 

Citrix has used the previous infrastructure for this Proof Of Concept, because it was already setup with XenApp and XenDesktop. The only new piece was the SMS Passcode server.

Guides

Download the Deployment Guide - ICA Proxy for Citrix Receiver with SMS Authentication.

The following Citrix Products are used in this POC

 

Read more here

 
How to install NetScaler VPX on VMware ESX 3.5 PDF 
Written by Alexander Ervik Johnsen   
Wednesday, 17 February 2010 13:55
Bookmark and Share

In this video you will learn how to Install NetScaler VPX on VMware ESX 3.5

 
How to get information from the Netscaler using Python and Suds PDF 
Written by Alexander Ervik Johnsen   
Tuesday, 09 February 2010 12:46
Bookmark and Share

Citrix has a ton of documentation for Perl/C/C# and Java ( None for Python ). SOAP client support has not been the best for Python, but is getting better.
If you have soappy/ZSI, which have had issues with regards to consuming Broken WSDL files ( Having to fix the Broken WSDL file manually, SUCKS!).

Enter SUDS. This module is by far, the best SOAP client for Python.
There documentation is simple and straight to the point, with a bunch of nice samples to get you on your way.

Install SUDS before proceeding further. You can get suds from here. https://fedorahosted.org/suds/

Connection to my netscaler was as simple as this...

Python 2.4.3 (#1, Sep  3 2009, 15:37:37)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-46)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from suds.client import Client
>>> url = "http://nsip/api/NSConfig.wsdl"
>>> from suds.xsd.doctor import *
>>> imp = Import('http://schemas.xmlsoap.org/soap/encoding/')
>>> imp.filter.add("urn:NSConfig")
>>> d = ImportDoctor(imp)
>>> client = Client(url, doctor=d, location="http://nsip/soap/")
>>> client.service.login(username="login", password="pass")
(simpleResult){
rc = 0
message = "Done"
}
>>>

As you can see above,  here we used the xsd doctor to import Soap encoding URL and added a filter for the Netscaler URN.
If you do not import the SOAP encoding schema, this is the error you will receive..

suds.TypeNotFound: Type not found: '(Array, http://schemas.xmlsoap.org/soap/encoding/, )

Once you type the above, you can now run commands in the python shell. for instance...

  • client.service.getlbvserver()
  • client.service.getservice()
  • client.service.getservicegroup()

I am attaching a script that I have written, to get Load Balanced Virtual Servers and its Services and ServiceGroups.
This script can also just list all the Virtual Servers, Services, or Service Groups. Examples below..

python queryns.py -c "ZenossTest2_svc" -n "nsip" -u "login" -p "pass"

Service Name Server Name Status IPAddress Port Protocol
ZenossTest2_svc zenossTest OUT OF SERVICE 192.168.101.221 9090 HTTP

python queryns.py -s foobar_test -n "nsip" -u "login" -p "pass"

Virtual Server State IPAddress Port Protocol
foobar_test UP 192.168.101.19 55555 HTTP

ServiceGroup Name SG State Server Name Status IPAddress Port Protocol
"Foo Bar" ENABLED billyboy UP 192.168.101.31 8080 HTTP
"Foo Bar" ENABLED zenossTest UP 192.168.101.221 8080 HTTP

Service Name Server Name Status IPAddress Port Protocol
ZenossTest2_svc zenossTest OUT OF SERVICE 192.168.101.221 9090 HTTP
------------------------------------------------------------------------------------------------------------------------

All the options are here..

python queryns.py -h
usage: queryns.py [options] arg --username=username --password=password --netscaler=netscalerip

options:
-h, --help show this help message and exit
-n NETSCALER, --netscaler=NETSCALER
Here you will put the netscaler IPAddress or the
netscaler hostname
-u USERNAME, --username=USERNAME
Your username
-p PASSWORD, --password=PASSWORD
Your password
-l LIST, --list=LIST List all the names of the Virtual Servers, Services,
ServiceGroups. Example --list=lbvserver,
--list=service, --list=servicegroup
-s SERVER, --vserver=SERVER
Virtual Server that you want to query. You can choose
a Virtual Server or you can pass all, so you get all
the Virtual Servers and its associated
ServiceGroups or Services. Example....
--vserver="foobar_test" or --vserver="all"
-g SGROUP, --sgroup=SGROUP
ServiceGroup that you want the info from
-c SERVICE, --service=SERVICE
Service that you want the info from

 


 
Citrix Partners with LG-Nortel to Sell NetScaler in Rapidly Growing Korean Enterprise and Telco Market PDF 
Written by Administrator   
Monday, 07 December 2009 20:42
Bookmark and Share

LG-Nortel is the Clear Leader in the $60 Million Korean Application Delivery Controller Market

Santa Clara, CA - Citrix Systems, Inc. (NASDAQ: CTXS) today announced a strategic alliance focused on providing application delivery networking solutions to enterprise customers in the Korean market. LG-Nortel, which boasts approximately 40 percent of the application delivery controller (ADC) market in Korea, will now distribute Citrix® NetScaler®, the industry-leading technology that accelerates and secures web applications for thousands of corporate and web customers and is a key component of the company’s virtualization, networking and cloud computing strategy. NetScaler is also the delivery infrastructure of choice for most of the world’s largest consumer websites and cloud providers, touching an estimated 75 percent of all Internet users each day.

LG-Nortel will establish a comprehensive application delivery infrastructure product line-up that will reinforce its domestic communication equipment portfolio. By adding NetScaler, LG-Nortel gains a partner that is stable and committed to the Korean marketplace, where the L4-L7 market size is approximately $60 million per year. The strategic alliance and sole distribution agreement encompasses the entire Citrix® NetScaler® MPX™ hardware product line, as well as the new Citrix® NetScaler® VPX™ virtual appliance portfolio (see “Citrix NetScaler Goes Virtual”). Together, Citrix and LG-Nortel will deliver solutions that meet the broad requirements of the Korean market – a comprehensive set of solutions that span the needs of the small businesses, large enterprises, telecommunications companies and cloud providers.

“LG-Nortel, the leader in the growing communication equipment market in Korea, represents a key, strategic alliance for us,” said Klaus Oestermann, group vice president and general manager, Network and Cloud Product Group, Citrix Systems. “Through this partnership, we will be able to offer a truly valuable networking solution where it is needed most – in the emerging communications and cloud computing market in Korea.”

“With this business partnership, LG-Nortel has significantly expanded its product portfolio and can now offer a variety of secure application delivery networking solutions,” said JD An, vice president, Enterprise Solutions, LG-Nortel. “In doing so, LG-Nortel establishes itself as the global communication equipment provider that consistently offers the most value to customers.”

NetScaler, a key component of an application delivery infrastructure, is an integrated web application delivery controller that functions as an application accelerator through caching and HTTP compression. NetScaler also provides advanced traffic management through Layer 4-7 load balancing and content switching, and includes application security via a web application firewall and SSL VPN. NetScaler further offloads application and web servers to ensure application availability, increased security through SSL, and server consolidation. It reduces the TCO of web application delivery, optimizes the user experience and makes applications run five times better. NetScaler appliances are available in both hardware and virtual versions, for any throughput need-from 10 Mbps to over 18 Gbps.

About Citrix Systems, Inc.
Citrix Systems, Inc. (NASDAQ:CTXS) is a leading provider of virtualization, networking and software-as-a-service (SaaS) technologies for more than 230,000 organizations worldwide. Its Citrix Delivery Center, Citrix Cloud Center (C3) and Citrix Online Services product families radically simplify computing for millions of users, delivering applications as an on-demand service to any user, in any location on any device. Citrix customers include the world’s largest Internet companies, 99 percent of Fortune Global 500 enterprises, and hundreds of thousands of small businesses and prosumers worldwide. Citrix partners with over 10,000 companies worldwide in more than 100 countries. Founded in 1989, annual revenue in 2008 was $1.6 billion.

For Citrix Investors
This release contains forward-looking statements which are made pursuant to the safe harbor provisions of Section 27A of the Securities Act of 1933 and of Section 21E of the Securities Exchange Act of 1934. These forward-looking statements do not constitute guarantees of future performance. Those statements involve a number of factors that could cause actual results to differ materially, including risks associated with products, their development, integration and distribution, product demand and pipeline, customer acceptance of new products, economic and competitive factors, Citrix’s key strategic relationships, acquisition and related integration risks as well as other risks detailed in Citrix’s filings with the Securities and Exchange Commission. Citrix assumes no obligation to update any forward-looking information contained in this press release or with respect to the announcements described herein.

# # #

Citrix®, NetScaler®, MPX™ and VPX™ are trademarks of Citrix Systems, Inc. and/or one or more of its subsidiaries, and may be registered in the U.S. Patent and Trademark Office and in other countries. All other trademarks and registered trademarks are property of their respective owners.

The development, release and timing of any features or functionality described for our products remains at our sole discretion. The information provided is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making purchasing decisions or incorporated into any contract.

 
<< Start < Prev 1 2 3 4 5 6 7 8 9 10 Next > End >>

Page 1 of 14