Porting and Deploying VoIP to IPv6: Lessons Learned
|
|
|
- Dora Fowler
- 10 years ago
- Views:
Transcription
1 Porting and Deploying VoIP to IPv6: Lessons Learned Marc Blanchet Simon Perreault Viagénie Presented at ClueCon, Chicago, August 2008
2 ANNOUNCEMENT Freeswitch now supports IPv6. IPv6 port got integrated into BIG APPLAUSE... ;-) Copyright Viagénie 2008 ::2
3 Viagénie Team Credentials Consulting and R&D in IP networking Customers such as providers, enterprises, manufacturers for IPv6 deployment, application porting, years in IP networking and Unix 10 years on IPv6 Team wrote IETF drafts and RFCs. Co-chair of IETF WGs (idn, vcarddav) Wrote the Migrating to IPv6 book, published by Wiley Gave IPv6 tutorials at many conferences. Authored and delivered the Cisco IPv course. Co-founder and member of the board, IPv6Forum Member of steering group of North American IPv6 Task Force VoIP developers, ported Asterisk and Freeswitch to IPv6. (Also ported NTP, Quake, to IPv6) Copyright Viagénie 2008
4 Plan IPv6 Why IPv6 and VoIP New API Lessons learned while porting... Asterisk (see FreeSWITCH Conclusion Copyright Viagénie 2008 ::4
5 IPv6? New version of IP: fixes IPv4 issues adds functionality Addresses: 128 bits written in hex with : as separator; method to compress the writing: all zeros = :: 2001:db8:1:1::1 In URL: enclose with []: sip:jdoe@[2001:db8:1:1::1]:5060 Loopback is ::1 Link(Subnet,vlan,...) mask is fixed: /64 Unique private address space: no collision of private networks Copyright Viagénie 2008 ::5
6 IPv6? Addresses (cont): Scoped addressing: link scope, site scope. An enabled IPv6 stack has already an IPv6 address (link scope) on each interface, even if no IPv6 external connectivity. Multiple addresses per interface: link-scope, global, [site,...] No NAT. Mobility: keep connections up even when host changes IP address Autoconfiguration: Stateless address allocation without DHCP server. Routers announce the link prefix on the link. Hosts use their MAC address for the host part of the address more... Copyright Viagénie 2008 ::6
7 IPv6 Market IPv4 address depletion: < 25% of remaining address space. Predictions of exhaustion for Asia Japan: see China: through NGN. Olympics is important milestone. US government: Mandating IPv6 for 2008 in all agencies DoD is leading VoIPv6: SNOM, PBXnSIP, leading vendors Providers (short list): Teleglobe/VSNL/Tata, NTT, AT&T, GlobalCrossing, Comcast: can't address all the devices (100M+) with IPv4. Deploying IPv6. (DOCSIS 3.0 is IPv6-ready). Copyright Viagénie 2008 ::7
8 IPv6 Support Support on OS (stack and API): Same (new) API everywhere!!! ;-) Since: Linux 2.4, FreeBSD 4.X, MacOSX 10.2, Windows XP, Solaris 8,... Opensource Apps: Apache 2.0+ (1.3 with a patch), Sendmail, Postfix, OpenSSH, Xfree/Xorg,... Now Asterisk and FreeSWITCH... ;-) Support on network gear: Cisco, Juniper, Checkpoint, Quagga/Zebra,... Copyright Viagénie 2008 ::8
9 Why IPv6 and VoIP? IPv6 and SIP delivers direct end-2-end reachability between any host. No NAT, no STUN, no TURN, no ICE, no MIDCOM, = no complexity, just works. True end-2-end media path. Much easier to deploy. A VoIP-IPv6 deployment in Japan found important cost reductions because of the ease of installation and support. To have an IPv6-enabled application, such as a PBX, need to convert to the new API. Copyright Viagénie 2008 ::9
10 New API New API for IPv6 [RFC3493, RFC3542] Makes the application version independent. The stack chooses which IP version will be used for that connection. A ported application becomes IP version unaware. No change to socket(), bind(), listen(), accept(), connect(), recv(), send(), close()... Changes: Struct hostent replaced by struct addrinfo Addrinfo is a linked list of addresses It contains everything needed to initialize a socket. Copyright Viagénie 2008 ::10
11 New API Changes: sockaddr record sockaddr_in : IPv4 sockaddr_in6 : IPv6 only. Do not use. sockaddr_storage: version independent for memory allocations. sockaddr *: for casting gethostbyname() replaced by getaddrinfo() gethostbyaddr(), inet_addr(), inet_ntoa() replaced by getnameinfo() More considerations: Parsing URLs: need to take care of the IPv6 syntax (i.e. []) Parsing and storing IP addresses Copyright Viagénie 2008 ::11
12 New API History: New API had multiple revisions, based on feedback of porting, deployment and engineering. Documentation and old code still uses old API calls. Old ways: IPv4-mapped addresses: important security issues. Old calls (deprecated, nowadays no more available in some OS): gethostbyname2() getipnodebyname() getipnodebyaddr() Copyright Viagénie 2008 ::12
13 FreeSWITCHv6 Copyright Viagénie 2008 ::13
14 FreeSWITCHv6 FreeSWITCH is IPv6-enabled since Running in production as our main telephony switch for one month And there was much rejoicing... Copyright Viagénie 2008 ::14
15 FreeSWITCHv6 SIP stack is Sofia-SIP, and is IPv6-enabled. Needed work: mod_sofia glue Uses address as string for registrar key. (Good!) Some IPv4-specific URI building logic. Some IPv4-specific SDP building logic. Core: $${local_ip_v6} now contains useful data. RTP: Used a single port for input and output. Couldn't transcode network protocols. Now opens a second port of other family when needed. Copyright Viagénie 2008 ::15
16 FreeSWITCHv6 (2) ACLs Was completely IPv4-specific. Redesigned for IPv4 and IPv6. New in IPv6: scope ID must match. Potential for optimization with SSE2 (anyone interested?) Not contributed yet, needs more testing. Copyright Viagénie 2008 ::16
17 Lessons Learned Copyright Viagénie 2008 ::17
18 Use Addresses Sparingly Call connect() or bind(), then discard the address. Anti-pattern: Have a host name resolving function return an address. Later, use that address. Better: Have a host name resolving function return a list of addresses. Later, use these addresses. Best: Combine the connecting/binding with the resolving. Copyright Viagénie 2008 ::18
19 Prepare for Multiplicity With version-independent programming, addresses are never encountered alone. Binding to localhost binds an IPv4 socket to and an IPv6 socket to :: (depends on OS). Hosts often have A as well as AAAA records. Try all of them when calling connect(). Copyright Viagénie 2008 ::19
20 Banish Old APIs You should never use these: inet_addr(), inet_aton(), inet_ntoa() inet_pton(), inet_ntop() gethostbyname(), gethostbyaddr() Not even these: (at least not for addresses) htonl(), htons(), ntohl(), ntohs() All you need is: getaddrinfo() (string to address) getnameinfo() (address to string) Copyright Viagénie 2008 ::20
21 An Address is Atomic Do not separate address components. Anti-pattern: if ( sa->sa_family == AF_INET ) { addr = ((sockaddr_in*)sa)->sin_addr.s_addr; port = ((sockaddr_in*)sa)->sin_port; } else if ( sa->sa_family == AF_INET6 ) { [...] snprintf( uri, sizeof(uri), sip:%s@%s:%hu, user, host, port ); Why it is bad: Repeated logic for brackets in URL. Not version-independent. What about IPv6 scope ID? Copyright Viagénie 2008 ::21
22 An Address is Atomic (2) Better: enum { URI_NUMERIC_HOST = 1, URI_NUMERIC_PORT = 2, URI_IGNORE_SCOPE = 4, [...] }; int build_uri( char *uri, size_t size, const char *user, const sockaddr *sa, socklen_t salen, int flags ); Copyright Viagénie 2008 ::22
23 Deployment Considerations Copyright Viagénie 2008 ::23
24 IPv4 - IPv6 Interoperability IPv4 and IPv6 UAs can communicate via a relay. Usually relay is a B2BUA (e.g. FreeSWITCH) Relaying media may cause unwanted load. Consider using a cross-protocol TURN server instead. A TURN server is designed for this task. Reliability and scalability provided by anycast + load balancing mechanism. Details on this, and more, in Wednesday presentation on STUN / TURN / ICE. Copyright Viagénie 2008 ::24
25 Conclusion Discussed: Benefits of IPv6 and why open-source B2BUA benefit from being IPv6-enabled. How to port an application to IPv6 Changes to FreeSWITCH Lessons learned VoIPv6 deployment Try IPv6 now! Copyright Viagénie 2008 ::25
26 Questions? Contact info: This presentation is available at References [RFC3493] Gilligan, R., Thomson, S., Bound, J., McCann, J., and W. Stevens, "Basic Socket Interface Extensions for IPv6", RFC 3493, February [RFC3542] Stevens, W., Thomas, M., Nordmark, E., and T. Jinmei, "Advanced Sockets Application Program Interface (API) for IPv6", RFC 3542, May IPv6 Network Programming, Junichiro itojun Hagino, Elsevier, 2004, ISBN Migrating to IPv6, Marc Blanchet, Wiley, 2006, ISBN , Copyright Viagénie 2008 ::26
27 Backup Slides Copyright Viagénie 2008 ::27
28 Best Practices for API usage Use sockaddr_storage for storing sockaddrs. Use sockaddr * for pointer to sockaddrs Always pass and carry the sockaddr length (in a socklen_t) to be fully portable across OS platforms. After the getaddrinfo() call, go through the link list of addrinfo to connect. Parse addresses and URL to support both IPv4 and IPv6 addresses (with port numbers) syntax. Do not use IPv4-mapped addresses or old API calls (gethostbyname2(), getipnode*()) Copyright Viagénie 2008 ::28
29 Eliminate Timeouts Many users already have an IPv6 address that is not reachable globally. (Local router, zombie Teredo, etc.) When connecting to results of getaddrinfo() sequentially, IPv6 connections will timeout. Reordering results so that IPv4 is tried first is a bad idea because the reverse may also be true. Solution: connect in parallel. (harder to implement) Even worse: DNS servers may timeout when queried for AAAA records. Cannot use getaddrinfo(). Solution: single-family getaddrinfo() calls in parallel. Copyright Viagénie 2008 ::29
30 Eliminate Timeouts (2/2) Combine the two previous solutions within a single API for resolving and connecting. int fd = resolve_connect( example.com, 80 ); Use worker threads for resolving and connecting in parallel. (Better: a single thread with nonblocking sockets and a DNS resolving library.) Connect to each address as soon as it is received. Do not wait for all address families to finish resolving. Cancel other connections once one succeeds. Disadvantage: this wastes packets. May be significant in some cases (e.g. lots of short connections). Copyright Viagénie 2008 ::30
31 For Protocol Designers Protocols that transport addresses are harder to implement in a version-independent way. SIP, RTSP, and SDP do transport addresses very much. Many ways to encode addresses make it hard: By themselves (e.g. c=in IP6 2001:db8::1) With brackets and port (e.g. Via: SIP/2.0/UDP [2001:db8::1]:5060) Implicitly as part of any URI (e.g. From: <sip:[email protected]>) Copyright Viagénie 2008 ::31
Asterisk with IPv6: Seamless and Ubiquitous VoIP
Asterisk with IPv6: Seamless and Ubiquitous VoIP Marc Blanchet Viagénie [email protected] http://www.viagenie.ca Presented at Voice Peering Forum, Miami, March 2007 Credentials 20+ years in IP
Porting and Running Asterisk to IPv6
Porting and Running Asterisk to IPv6 Presented at APRICOT, Bali, Feb 28 th 2007 Marc Blanchet Viagénie http://www.viagenie.ca Credentials 20+ years in IP networking and Unix, with 10 years on IPv6... IP
Porting applications & DNS issues. socket interface extensions for IPv6. Eva M. Castro. [email protected]. dit. Porting applications & DNS issues UPM
socket interface extensions for IPv6 Eva M. Castro [email protected] Contents * Introduction * Porting IPv4 applications to IPv6, using socket interface extensions to IPv6. Data structures Conversion functions
Software changes for Website and Application IPv6 Readiness
Software changes for Website and Application IPv6 Readiness Ahmed Abu-Abed, P.Eng. Tamkien Systems [email protected] 1 Agenda Introduction Enabling Website IPv6 and Forum Certification Intro to Socket
IPv6 Enabling CIFS/SMB Applications
IPv6 Enabling CIFS/SMB Applications 2010 Storage Developers Conference Santa Clara Dr David Holder CEng FIET MIEEE [email protected] http://www.erion.co.uk Background Erion David Holder Over twelve
NAT and Firewall Traversal with STUN / TURN / ICE
NAT and Firewall Traversal with STUN / TURN / ICE Simon Perreault Viagénie {mailto sip}:[email protected] http://www.viagenie.ca Credentials Consultant in IP networking and VoIP at Viagénie.
NAT and Firewall Traversal with STUN / TURN / ICE
NAT and Firewall Traversal with STUN / TURN / ICE Simon Perreault Viagénie {mailto sip}:[email protected] http://www.viagenie.ca Credentials Consultant in IP networking and VoIP at Viagénie.
IPv4/IPv6 Transition for SIP VoIP Applications
IPv4/IPv6 Transition for SIP VoIP Applications Dr. Whai-En Chen Research Assistant Professor Department of Computer Science National Chiao Tung University, Taiwan 300, R.O.C. TEL: +886-3-5731924 FAX: +886-3-5716929
Best practices in IPv6 enabled networking software development. <[email protected]>
Best practices in IPv6 enabled networking software development 1 The IPv6 Protocol 1 New version of the Internet Protocol Devised by IETF to replace IPv4 It solves all the problems of IPv4 Address space
Introduction to Socket Programming Part I : TCP Clients, Servers; Host information
Introduction to Socket Programming Part I : TCP Clients, Servers; Host information Keywords: sockets, client-server, network programming-socket functions, OSI layering, byte-ordering Outline: 1.) Introduction
Socket Programming. Kameswari Chebrolu Dept. of Electrical Engineering, IIT Kanpur
Socket Programming Kameswari Chebrolu Dept. of Electrical Engineering, IIT Kanpur Background Demultiplexing Convert host-to-host packet delivery service into a process-to-process communication channel
Elementary Name and Address. Conversions
Elementary Name and Address Domain name system Conversions gethostbyname Function RES_USE_INET6 resolver option gethostbyname2 Function and IPv6 support gethostbyaddr Function uname and gethostname Functions
CSE 333 SECTION 6. Networking and sockets
CSE 333 SECTION 6 Networking and sockets Goals for Today Overview of IP addresses Look at the IP address structures in C/C++ Overview of DNS Write your own (short!) program to do the domain name IP address
TCP/IP - Socket Programming
TCP/IP - Socket Programming [email protected] Jim Binkley 1 sockets - overview sockets simple client - server model look at tcpclient/tcpserver.c look at udpclient/udpserver.c tcp/udp contrasts normal master/slave
Socket Programming in C/C++
September 24, 2004 Contact Info Mani Radhakrishnan Office 4224 SEL email mradhakr @ cs. uic. edu Office Hours Tuesday 1-4 PM Introduction Sockets are a protocol independent method of creating a connection
INTRODUCTION UNIX NETWORK PROGRAMMING Vol 1, Third Edition by Richard Stevens
INTRODUCTION UNIX NETWORK PROGRAMMING Vol 1, Third Edition by Richard Stevens Read: Chapters 1,2, 3, 4 Communications Client Example: Ex: TCP/IP Server Telnet client on local machine to Telnet server on
NS3 Lab 1 TCP/IP Network Programming in C
NS3 Lab 1 TCP/IP Network Programming in C Dr Colin Perkins School of Computing Science University of Glasgow http://csperkins.org/teaching/ns3/ 13/14 January 2015 Introduction The laboratory exercises
Socket Programming. Srinidhi Varadarajan
Socket Programming Srinidhi Varadarajan Client-server paradigm Client: initiates contact with server ( speaks first ) typically requests service from server, for Web, client is implemented in browser;
Aculab digital network access cards
Aculab digital network access cards Adding and Using IPv6 Capabilities Guide Revision 1.0.2 PROPRIETARY INFORMATION Aculab Plc makes every effort to ensure that the information in this document is correct
IPv4 and IPv6 Integration. Formation IPv6 Workshop Location, Date
IPv4 and IPv6 Integration Formation IPv6 Workshop Location, Date Agenda Introduction Approaches to deploying IPv6 Standalone (IPv6-only) or alongside IPv4 Phased deployment plans Considerations for IPv4
gianluca.verin verin@libero. @libero.itit Vicenza.linux.it\LinuxCafe 1
gianluca.verin verin@libero. @libero.itit Vicenza.linux.it\LinuxCafe 1 Agenda IPv6 Basics Connecting to 6Bone Why do we need IPv6? IPv6 Introduction-Transition IPv6 and open source community Future applications
Voice over IP & Other Multimedia Protocols. SIP: Session Initiation Protocol. IETF service vision. Advanced Networking
Advanced Networking Voice over IP & Other Multimedia Protocols Renato Lo Cigno SIP: Session Initiation Protocol Defined by IETF RFC 2543 (first release march 1999) many other RFCs... see IETF site and
Tutorial on Socket Programming
Tutorial on Socket Programming Computer Networks - CSC 458 Department of Computer Science Seyed Hossein Mortazavi (Slides are mainly from Monia Ghobadi, and Amin Tootoonchian, ) 1 Outline Client- server
IPv6 in Axis Video Products
TECHNICAL NOTE REFERENCE DOCUMENT IPv6 in Axis Video Products Created: 2006-01-31 Last updated: 2006-05-29 TABLE OF CONTENTS DOCUMENT HISTORY... 2 1 IPV6 IN GENERAL... 3 1.1 The IPv6 address... 3 1.1.1
Unix Network Programming
Introduction to Computer Networks Polly Huang EE NTU http://cc.ee.ntu.edu.tw/~phuang [email protected] Unix Network Programming The socket struct and data handling System calls Based on Beej's Guide
APNIC IPv6 Deployment
APNIC IPv6 Deployment Ulaanbaatar, Mongolia 19 October 2015 Issue Date: Revision: Overview Deployment motivation Network deployment IPv6 Services deployment IPv6 Anycast service IPv6 Cloud service Summary
SIP Essentials Training
SIP Essentials Training 5 Day Course Lecture & Labs COURSE DESCRIPTION Learn Session Initiation Protocol and important protocols related to SIP implementations. Thoroughly study the SIP protocol through
TCP/IP Basis. OSI Model
TCP/IP Basis 高 雄 大 學 資 訊 工 程 學 系 嚴 力 行 Source OSI Model Destination Application Presentation Session Transport Network Data-Link Physical ENCAPSULATION DATA SEGMENT PACKET FRAME BITS 0101010101010101010
Ecdysis: Open-Source DNS64 and NAT64
Ecdysis: Open-Source DNS64 and NAT64 Simon Perreault, Jean-Philippe Dionne, and Marc Blanchet Viagénie, Québec City, Canada e-mail: [email protected], [email protected], [email protected]
Socket Programming. Request. Reply. Figure 1. Client-Server paradigm
Socket Programming 1. Introduction In the classic client-server model, the client sends out requests to the server, and the server does some processing with the request(s) received, and returns a reply
Use Domain Name System and IP Version 6
Use Domain Name System and IP Version 6 What You Will Learn The introduction of IP Version 6 (IPv6) into an enterprise environment requires some changes both in the provisioned Domain Name System (DNS)
Domain Name System (1)! gethostbyname (2)! gethostbyaddr (2)!
Lecture 5 Overview Last Lecture Socket Options and elementary UDP sockets This Lecture Name and address conversions & IPv6 Source: Chapter 11 Next Lecture Multicast Source: Chapter 12 1 Domain Name System
ELEN 602: Computer Communications and Networking. Socket Programming Basics
1 ELEN 602: Computer Communications and Networking Socket Programming Basics A. Introduction In the classic client-server model, the client sends out requests to the server, and the server does some processing
UNIX Sockets. COS 461 Precept 1
UNIX Sockets COS 461 Precept 1 Clients and Servers Client program Running on end host Requests service E.g., Web browser Server program Running on end host Provides service E.g., Web server GET /index.html
IPv6 Addressing. Awareness Objective. IPv6 Address Format & Basic Rules. Understanding the IPv6 Address Components
IPv6 Addressing Awareness Objective IPv6 Address Format & Basic Rules Understanding the IPv6 Address Components Understanding & Identifying Various Types of IPv6 Addresses 1 IPv4 Address SYNTAX W. X.
IPv6.marceln.org. [email protected]
IPv6.marceln.org [email protected] RFC 1606 RFC 1606 A Historical Perspective On The Usage Of IP Version 9 1 April 1994, J. Onions Introduction The take-up of the network protocol TCP/IPv9 has been
About the Technical Reviewers
About the Author p. xiii About the Technical Reviewers p. xv Acknowledgments p. xvii Introduction p. xix IPv6 p. 1 IPv6-Why? p. 1 IPv6 Benefits p. 2 More Address Space p. 2 Innovation p. 3 Stateless Autoconfiguration
Elementary Name and Address Conversions
Elementary Name and Address Conversions Domain name system gethostbyname Function RES_USE_INET6 resolver option gethostbyname2 Function and IPv6 support gethostbyaddr Function uname and gethostname Functions
Operational Problems in IPv6: Fallback and DNS issues
Operational Problems in : Fallback and DNS issues Tomohiro Fujisaki, Arifumi Matsumoto, Katsuyasu Toyama,Tsuyoshi Toyono and Shirou Niinobe Nippon Telegraph and Telephone Corporation Network problems associated
Windows Socket Programming & IPv6 Translation Middleware
Windows Socket Programming IPv6 Translation Middleware Dr. Whai-En Chen VoIP and IPv6 Laboratory Research Assistant Professor Dept. of Computer Science and Information Engineering National Chiao Tung University
NAT TCP SIP ALG Support
The feature allows embedded messages of the Session Initiation Protocol (SIP) passing through a device that is configured with Network Address Translation (NAT) to be translated and encoded back to the
NAT Traversal for VoIP. Ai-Chun Pang Graduate Institute of Networking and Multimedia Dept. of Comp. Sci. and Info. Engr. National Taiwan University
NAT Traversal for VoIP Ai-Chun Pang Graduate Institute of Networking and Multimedia Dept. of Comp. Sci. and Info. Engr. National Taiwan University 1 What is NAT NAT - Network Address Translation RFC 3022
IPV6 DEPLOYMENT GUIDELINES FOR. ARRIS Group, Inc.
IPV6 DEPLOYMENT GUIDELINES FOR CABLE OPERATORS Patricio i S. Latini i ARRIS Group, Inc. Current IPv4 Situationti IANA has already assigned the last IPv4 Blocks to the RIRs. RIRs address exhaustion may
Writing Client/Server Programs in C Using Sockets (A Tutorial) Part I. Session 5958. Greg Granger grgran@sas. sas.com. SAS/C & C++ Support
Writing Client/Server Programs in C Using Sockets (A Tutorial) Part I Session 5958 Greg Granger grgran@sas sas.com SAS Slide 1 Feb. 1998 SAS/C & C++ Support SAS Institute Part I: Socket Programming Overview
Campus IPv6 connection Campus IPv6 deployment
Campus IPv6 connection Campus IPv6 deployment Campus Address allocation, Topology Issues János Mohácsi NIIF/HUNGARNET Copy Rights This slide set is the ownership of the 6DISS project via its partners The
SIIT-DC: IPv4 Service Continuity for IPv6 Data Centres. Tore Anderson Redpill Linpro AS RIPE69, London, November 2014
SIIT-DC: IPv4 Service Continuity for IPv6 Data Centres Tore Anderson Redpill Linpro AS RIPE69, London, November 2014 Stop Thinking IPv4; IPv6 is Here IPv4 is a dying and cramped protocol IPv6 is the exact
3.5. cmsg Developer s Guide. Data Acquisition Group JEFFERSON LAB. Version
Version 3.5 JEFFERSON LAB Data Acquisition Group cmsg Developer s Guide J E F F E R S O N L A B D A T A A C Q U I S I T I O N G R O U P cmsg Developer s Guide Elliott Wolin [email protected] Carl Timmer [email protected]
About Me. Work at Jumping Bean. Developer & Trainer Contact Info: Twitter @mxc4 Twitter @jumpingbeansa [email protected]
IPv6 & Linux About Me Work at Jumping Bean Developer & Trainer Contact Info: Twitter @mxc4 Twitter @jumpingbeansa [email protected] Goals & Motivation Why? Why IPv6? Why this talk? Information on
Project 4: IP over DNS Due: 11:59 PM, Dec 14, 2015
CS168 Computer Networks Jannotti Project 4: IP over DNS Due: 11:59 PM, Dec 14, 2015 Contents 1 Introduction 1 2 Components 1 2.1 Creating the tunnel..................................... 2 2.2 Using the
IBM Software Group Enterprise Networking Solutions z/os V1R11 Communications Server
IBM Software Group Enterprise Networking Solutions z/os V1R11 Communications Server Resolver DNS cache z/os Communications Server Development, Raleigh, North Carolina This presentation describes enhancements
IPv6/IPv4 Translation for SIP Applications- Socket-Layer Translator and SIPv6 Translator
IPv6/IPv4 Translation for SIP Applications- Socket-Layer Translator and SIPv6 Translator Whai-En Chen Research Assistant Professor Department of Computer Science and Information Engineering National Chiao
Monitoring of Tunneled IPv6 Traffic Using Packet Decapsulation and IPFIX
Monitoring of Tunneled IPv6 Traffic Using Packet Decapsulation and IPFIX Martin Elich 1,3, Matěj Grégr 1,2 and Pavel Čeleda1,3 1 CESNET, z.s.p.o., Prague, Czech Republic 2 Brno University of Technology,
Session NM059. TCP/IP Programming on VMS. Geoff Bryant Process Software
Session NM059 TCP/IP Programming on VMS Geoff Bryant Process Software Course Roadmap Slide 160 NM055 (11:00-12:00) Important Terms and Concepts TCP/IP and Client/Server Model Sockets and TLI Client/Server
MINIMUM NETWORK REQUIREMENTS 1. REQUIREMENTS SUMMARY... 1
Table of Contents 1. REQUIREMENTS SUMMARY... 1 2. REQUIREMENTS DETAIL... 2 2.1 DHCP SERVER... 2 2.2 DNS SERVER... 2 2.3 FIREWALLS... 3 2.4 NETWORK ADDRESS TRANSLATION... 4 2.5 APPLICATION LAYER GATEWAY...
ERserver. iseries. Networking TCP/IP setup
ERserver iseries Networking TCP/IP setup ERserver iseries Networking TCP/IP setup Copyright International Business Machines Corporation 1998, 2002. All rights reserved. US Government Users Restricted
Step-by-Step Guide for Setting Up IPv6 in a Test Lab
Step-by-Step Guide for Setting Up IPv6 in a Test Lab Microsoft Corporation Published: July, 2006 Author: Microsoft Corporation Abstract This guide describes how to configure Internet Protocol version 6
NAT Tutorial. Dan Wing, [email protected]. IETF78, Maastricht July 25, 2010
NAT Tutorial Dan Wing, [email protected] IETF78, Maastricht July 25, 2010 v3 1 2 Agenda NAT and NAPT Types of NATs Application Impact Application Layer Gateway (ALG) STUN, ICE, TURN Large-Scale NATs (LSN,
EE4607 Session Initiation Protocol
EE4607 Session Initiation Protocol Michael Barry [email protected] [email protected] Outline of Lecture IP Telephony the need for SIP Session Initiation Protocol Addressing SIP Methods/Responses Functional
THE ADOPTION OF IPv6 *
THE ADOPTION OF IPv6 * STUDENT PAPER Brian Childress Southwest Texas State University [email protected] Bryan Cathey Southwest Texas State University [email protected] Sara Dixon Southwest Texas State University
OfficeMaster Gate (Virtual) Enterprise Session Border Controller for Microsoft Lync Server. Quick Start Guide
OfficeMaster Gate (Virtual) Enterprise Session Border Controller for Microsoft Lync Server Quick Start Guide October 2013 Copyright and Legal Notice. All rights reserved. No part of this document may be
Implementing DHCPv6 on an IPv6 network
Implementing DHCPv6 on an IPv6 network Benjamin Long [email protected] 8-11-2009 Implementing DHCPv6 on an IPv6 network 2 Table of Contents DHCPv6 Overview...3 Terms used by DHCPv6...3 DHCPv6 Message
ICT SEcurity BASICS. Course: Software Defined Radio. Angelo Liguori. SP4TE lab. [email protected]
Course: Software Defined Radio ICT SEcurity BASICS Angelo Liguori [email protected] SP4TE lab 1 Simple Timing Covert Channel Unintended information about data gets leaked through observing the
Introduction to IP v6
IP v 1-3: defined and replaced Introduction to IP v6 IP v4 - current version; 20 years old IP v5 - streams protocol IP v6 - replacement for IP v4 During developments it was called IPng - Next Generation
Need for Signaling and Call Control
Need for Signaling and Call Control VoIP Signaling In a traditional voice network, call establishment, progress, and termination are managed by interpreting and propagating signals. Transporting voice
BroadCloud PBX Customer Minimum Requirements
BroadCloud PBX Customer Minimum Requirements Service Guide Version 2.0 1009 Pruitt Road The Woodlands, TX 77380 Tel +1 281.465.3320 WWW.BROADSOFT.COM BroadCloud PBX Customer Minimum Requirements Service
Industry Automation White Paper Januar 2013 IPv6 in automation technology
Table of contents: 1 Why another White Paper IPv6?... 3 2 IPv6 for automation technology... 3 3 Basics of IPv6... 3 3.1 Turning point/initial situation... 3 3.2 Standardization... 4 3.2.1 IPv6 address
Avaya IP Office 8.1 Configuration Guide
Avaya IP Office 8.1 Configuration Guide Performed By tekvizion PVS, Inc. Contact: 214-242-5900 www.tekvizion.com Revision: 1.1 Date: 10/14/2013 Copyright 2013 by tekvizion PVS, Inc. All Rights Reserved.
Packet Sniffing and Spoofing Lab
SEED Labs Packet Sniffing and Spoofing Lab 1 Packet Sniffing and Spoofing Lab Copyright c 2014 Wenliang Du, Syracuse University. The development of this document is/was funded by the following grants from
A Comparative Study of Signalling Protocols Used In VoIP
A Comparative Study of Signalling Protocols Used In VoIP Suman Lasrado *1, Noel Gonsalves *2 Asst. Prof, Dept. of MCA, AIMIT, St. Aloysius College (Autonomous), Mangalore, Karnataka, India Student, Dept.
VoIP and NAT/Firewalls: Issues, Traversal Techniques, and a Real-World Solution
ACCEPTED FROM OPEN CALL VoIP and NAT/Firewalls: Issues, Traversal Techniques, and a Real-World Solution Hechmi Khlifi, Jean-Charles Grégoire, and James Phillips, Université du Québec ABSTRACT In spite
Installation & Configuration Guide Version 1.0. TekSIP Route Server Version 1.0 - Installation & Configuration Guide
TekSIP Route Server Installation & Configuration Guide Version 1.0 2011 Yasin KAPLAN - http://www.teksip.com/ 1 Document Revision 1.1 http://www.teksip.com/ TekSIP Route Server is built by Yasin KAPLAN
SIP Basics. CSG VoIP Workshop. Dennis Baron January 5, 2005. Dennis Baron, January 5, 2005 Page 1. np119
SIP Basics CSG VoIP Workshop Dennis Baron January 5, 2005 Page 1 Outline What is SIP SIP system components SIP messages and responses SIP call flows SDP basics/codecs SIP standards Questions and answers
VoIP Probe 3.4. Functions, Parameters & Metrics for integration with HP Business Availability Center via HP Business Process Monitor
VoIP Probe 3.4 Functions, Parameters & Metrics for integration with HP Business Availability Center via HP Business Process Monitor ADVENAGE GmbH Blumenhagenstr. 10 D-30167 Hannover Germany March 2010
IPv4/IPv6 Transition Using DNS64/NAT64: Deployment Issues
IPv4/IPv6 Transition Using DNS64/NAT64: Deployment Issues Enis Hodzic BH Telecom.d.o.o Sarajevo, Bosnia & Herzegovina [email protected] Sasa Mrdovic Faculty of Electrical Engineering University
IPv6 Trace Analysis using Wireshark Nalini Elkins, CEO Inside Products, Inc. [email protected]
1 IPv6 Trace Analysis using Wireshark Nalini Elkins, CEO Inside Products, Inc. [email protected] Agenda What has not changed between IPv4 and IPv6 traces What has changed between IPv4 and
White paper. SIP An introduction
White paper An introduction Table of contents 1 Introducing 3 2 How does it work? 3 3 Inside a normal call 4 4 DTMF sending commands in sip calls 6 5 Complex environments and higher security 6 6 Summary
Telepresence in an IPv6 World. Simplify the Transition
Telepresence in an IPv6 World Simplify the Transition IPV6 has the potential to transform communications, collaboration, learning, entertainment, physical security and more. What You Will Learn If you
Corresponding Auto Names for IPv6 Addresses <draft-kitamura-ipv6-auto-name-02.txt> Hiroshi KITAMURA NEC Corporation [email protected].
Corresponding Auto Names for IPv6 Addresses Hiroshi KITAMURA NEC Corporation [email protected] 1 Introduction IPv6 address is too long and complicated to remember
Secure64. Use cases for DNS64/NAT64
Secure64 Use cases for DNS64/NAT64 Agenda / About Me VP of Sales and Customer Solutions at Secure64 Software Corp. Director and founder of the TXv6TF Personal blog at IPv4depletion.com 1 IPv4 Depletion
IT304 Experiment 2 To understand the concept of IPC, Pipes, Signals, Multi-Threading and Multiprocessing in the context of networking.
Aim: IT304 Experiment 2 To understand the concept of IPC, Pipes, Signals, Multi-Threading and Multiprocessing in the context of networking. Other Objective of this lab session is to learn how to do socket
SIP A Technology Deep Dive
SIP A Technology Deep Dive Anshu Prasad Product Line Manager, Mitel June 2010 Laith Zalzalah Director, Mitel NetSolutions What is SIP? Session Initiation Protocol (SIP) is a signaling protocol for establishing
World IPv6 Day. Lorenzo Colitti [email protected]
World IPv6 Day Lorenzo Colitti [email protected] What's the problem? Lorenzo Colitti June 2010 The Internet today ISP 1.1.1.1 1.2.3.4 No more IPv4... but no IPv6 yet either The Internet tomorrow? ISP
HOST AUTO CONFIGURATION (BOOTP, DHCP)
Announcements HOST AUTO CONFIGURATION (BOOTP, DHCP) I. HW5 online today, due in week! Internet Protocols CSC / ECE 573 Fall, 2005 N. C. State University copyright 2005 Douglas S. Reeves 2 I. Auto configuration
Internet Technology Voice over IP
Internet Technology Voice over IP Peter Gradwell BT Advert from 1980s Page 2 http://www.youtube.com/v/o0h65_pag04 Welcome to Gradwell Gradwell provides technology for every line on your business card Every
19531 - Telematics. 9th Tutorial - IP Model, IPv6, Routing
19531 - Telematics 9th Tutorial - IP Model, IPv6, Routing Bastian Blywis Department of Mathematics and Computer Science Institute of Computer Science 06. January, 2011 Institute of Computer Science Telematics
