FritzConnection. Eine Python-Schnittstelle zur AVM FritzBox. FritzConnection pythoncamp 2013 Klaus Bremer

Size: px
Start display at page:

Download "FritzConnection. Eine Python-Schnittstelle zur AVM FritzBox. FritzConnection pythoncamp 2013 Klaus Bremer"

Transcription

1 FritzConnection Eine Python-Schnittstelle zur AVM FritzBox 1

2 Detailinformationen von AVM: Per Navigation auf (für mich) unauffindbar. 2

3 FritzConnection FritzTools FritzStatus FritzMonitor fritzconnection: fritzstatus: fritzmonitor: Schnittstelle zur FritzBox FritzBox-Statusinformationen GUI-Aktivitätsmonitor (TkInter) 3

4 FritzBox liefert Schnittstellenbeschreibung via xml-dateien: igddesc.xml tr64desc.xml Zugriff per http: IP: Port:

5 TR-064: basierend auf UPnP (Universal Plug and Play) Informationen TR-064: _Konfiguration_ueber_TR-064.pdf Informationen UPnP: 5

6 igddesc.xml (Internet Gateway Device Description) <service> <servicetype>urn:schemas-upnp-org:service:wancommoninterfaceconfig:1</servicetype> <serviceid>urn:upnp-org:serviceid:wancommonifc1</serviceid> <controlurl>/upnp/control/wancommonifc1</controlurl> <eventsuburl>/upnp/control/wancommonifc1</eventsuburl> <SCPDURL>/igdicfgSCPD.xml</SCPDURL> </service> Service Control Protocol Document 6

7 igdicfgscpd.xml (Internet Gateway Device Internal Configuration Service Control Protocol Document) <action> <name>gettotalbytesreceived</name> <argumentlist> <argument> <name>newtotalbytesreceived</name> <direction>out</direction> <relatedstatevariable>totalbytesreceived</relatedstatevariable> </argument> </argumentlist> </action>... <statevariable sendevents="no"> <name>totalbytesreceived</name> <datatype>ui4</datatype> </statevariable> 7

8 FritzConnection: Anwendungsbeispiel if name == ' main ': print('fritzconnection:') fc = FritzConnection() print(fc.modelname) print(fc.actionnames) print(fc.get_action_arguments('getstatusinfo')) print(fc.call_action('getstatusinfo')) print(fc.call_action('gettotalbytessent')) print(fc.call_action('gettotalbytesreceived')) print(fc.call_action('getexternalipaddress')) print(fc.call_action('getcommonlinkproperties')) 8

9 Output: FritzConnection: FRITZ!Box Fon WLAN 7390 ['AddPortMapping', 'DeletePortMapping', 'ForceTermination', 'GetATMEncapsulation', 'GetAddonInfos', 'GetAutoConfig', 'GetCommonLinkProperties', 'GetConnectionTypeInfo', 'GetDSLLinkInfo', 'GetDestinationAddress', 'GetExternalIPAddress', 'GetFCSPreserved', 'GetGenericPortMappingEntry', 'GetModulationType', 'GetNATRSIPStatus', 'GetSpecificPortMappingEntry', 'GetStatusInfo', 'GetTotalBytesReceived', 'GetTotalBytesSent', 'GetTotalPacketsReceived', 'GetTotalPacketsSent', 'RequestConnection', 'SetATMEncapsulation', 'SetConnectionType', 'SetDSLLinkType', 'SetDestinationAddress', 'SetFCSPreserved'] [('NewUptime', 'out', 'ui4'), ('NewLastConnectionError', 'out', 'string'), ('NewConnectionStatus', 'out', 'string')] {'NewConnectionStatus': u'connected', 'NewLastConnectionError': u'error_none', 'NewUptime': 50301} {'NewTotalBytesSent': } {'NewTotalBytesReceived': } {'NewExternalIPAddress': u' '} {'NewWANAccessType': u'dsl', 'NewLayer1DownstreamMaxBitRate': , 'NewPhysicalLinkStatus': u'up', 'NewLayer1UpstreamMaxBitRate': } 9

10 IO: if name == ' main ': print('fritzconnection:') fc = FritzConnection() -- print(fc.modelname) FritzConnection: FRITZ!Box Fon WLAN

11 IO: if name == ' main ':... print(fc.actionnames) -- ['AddPortMapping', 'DeletePortMapping', 'ForceTermination', 'GetATMEncapsulation', 'GetAddonInfos', 'GetAutoConfig', 'GetCommonLinkProperties', 'GetConnectionTypeInfo', 'GetDSLLinkInfo', 'GetDestinationAddress', 'GetExternalIPAddress', 'GetFCSPreserved', 'GetGenericPortMappingEntry', 'GetModulationType', 'GetNATRSIPStatus', 'GetSpecificPortMappingEntry', 'GetStatusInfo', 'GetTotalBytesReceived', 'GetTotalBytesSent', 'GetTotalPacketsReceived', 'GetTotalPacketsSent', 'RequestConnection', 'SetATMEncapsulation', 'SetConnectionType', 'SetDSLLinkType', 'SetDestinationAddress', 'SetFCSPreserved'] 11

12 IO: if name == ' main ':... print(fc.get_action_arguments('getstatusinfo')) print(fc.call_action('getstatusinfo')) -- [('NewUptime', 'out', 'ui4'), ('NewLastConnectionError', 'out', 'string'), ('NewConnectionStatus', 'out', 'string')] {'NewConnectionStatus': u'connected', 'NewLastConnectionError': u'error_none', 'NewUptime': 50301} 12

13 IO: if name == ' main ':... print(fc.call_action('gettotalbytessent')) print(fc.call_action('gettotalbytesreceived')) print(fc.call_action('getexternalipaddress')) print(fc.call_action('getcommonlinkproperties')) -- {'NewTotalBytesSent': } {'NewTotalBytesReceived': } {'NewExternalIPAddress': u' '} {'NewWANAccessType': u'dsl', 'NewLayer1DownstreamMaxBitRate': , 'NewPhysicalLinkStatus': u'up', 'NewLayer1UpstreamMaxBitRate': } 13

14 FritzStatus: class FritzStatus(object): """ Class for requsting status-informations: def modelname(self): return def is_linked(self): """Returns True if the FritzBox is physically linked to the provider.""" status = self.fc.call_action('getcommonlinkproperties') return status['newphysicallinkstatus'] == def is_connected(self): """ Returns True if the FritzBox has established an internet-connection. """ status = self.fc.call_action('getstatusinfo') return status['newconnectionstatus'] == 'Connected' 14

15 FritzStatus: if name == ' main ': fs = FritzStatus() print(fs.modelname) print(fs.bytes_sent) print(fs.bytes_received) print(fs.is_linked) print(fs.is_connected) print(fs.external_ip) print(fs.uptime) print(fs.str_uptime) print(fs.max_bit_rate) print(fs.max_byte_rate) print(fs.str_max_bit_rate) FRITZ!Box Fon WLAN True True :19:35 ( , ) ( , ) ('9.0 MBit/s', '48.0 MBit/s') 15

16 FritzMonitor: 16

17 17

Managing Ports and System Services using BT NetProtect Plus firewall

Managing Ports and System Services using BT NetProtect Plus firewall Managing Ports and System Services using BT NetProtect Plus firewall To work properly, certain programs (including web servers and file-sharing server programs) must accept unsolicited connections from

More information

Network Configuration Settings

Network Configuration Settings Network Configuration Settings Many small businesses already have an existing firewall device for their local network when they purchase Microsoft Windows Small Business Server 2003. Often, these devices

More information

Configuring a Trimble Sps 461 using the Ethernet Connection GETTING THE GPS ON THE NETWORK HTTP PORT. By Bob Glover

Configuring a Trimble Sps 461 using the Ethernet Connection GETTING THE GPS ON THE NETWORK HTTP PORT. By Bob Glover Configuring a Trimble Sps 461 using the Ethernet Connection By Bob Glover With most computers today, finding a serial port on board is a thing of the past. Increasingly, fewer and fewer computers even

More information

Universal plug and play (UPnP) mapping attacks

Universal plug and play (UPnP) mapping attacks Universal plug and play (UPnP) mapping attacks Daniel Garcia Abstract Universal Plug and Play is a popular method for NAT traversal used by common household devices. This document explores the different

More information

Quick Guide of HiDDNS Settings (with UPnP)

Quick Guide of HiDDNS Settings (with UPnP) Quick Guide of HiDDNS Settings (with UPnP) Solution 1: With the development of surveillance systems, more and more users want to use ADSL to realize video surveillance through network. But ADSL gives dynamic

More information

HREP Series DVR DDNS Configuration Application Note

HREP Series DVR DDNS Configuration Application Note HREP Series DVR DDNS Configuration Application Note DDNS enables your HREP Series DVR to be remotely accessed using a Dynamic DNS server, which is commonly used if a broadband connection does not have

More information

Installation, Configuration and Operation

Installation, Configuration and Operation Installation, Configuration and Operation FRITZ!Box 7360 Table of Contents Symbols and Highlighting........................ 7 1 Getting to Know FRITZ!Box........................ 8 1.1 FRITZ!Box at a Glance.....................................

More information

Chapter 3 Security and Firewall Protection

Chapter 3 Security and Firewall Protection Chapter 3 Security and Firewall Protection This chapter describes how to use the basic firewall features of the ADSL2+ Modem Router to protect your network. Firewall Settings You can set up the ADSL2+

More information

Quick Installation Guide

Quick Installation Guide V2.01 IP Wired / Wireless Camera Quick Installation Guide (For Windows OS) Model: FI8602/FI8602W ShenZhen Foscam Intelligent Technology Co., Ltd Packing List Quick Installation Guide 1) IP CAMERA X 1 2)

More information

Performing an Air Upgrade of the DECT Handset

Performing an Air Upgrade of the DECT Handset Performing an Air Upgrade of the DECT Handset Date: April 2008 Version: v2.0 Abstract: Applicability: Updates: This application note provides technical information on how to perform an air upgrade of the

More information

Installation, Configuration and Operation. FRITZ!Box

Installation, Configuration and Operation. FRITZ!Box Installation, Configuration and Operation FRITZ!Box 6320 Cable Table of Contents Symbols and Highlighting........................ 6 1 FRITZ!Box 6320 Cable............................ 7 1.1 An Overview.............................................

More information

Firewall Defaults, Public Server Rule, and Secondary WAN IP Address

Firewall Defaults, Public Server Rule, and Secondary WAN IP Address Firewall Defaults, Public Server Rule, and Secondary WAN IP Address This quick start guide provides the firewall defaults and explains how to configure some basic firewall rules for the ProSafe Wireless-N

More information

iphone Softphone App for the Opera IP System Installation and user guide

iphone Softphone App for the Opera IP System Installation and user guide iphone Softphone App for the Opera IP System Installation and user guide IPhone App Installation and Use Specifications are subject to change without notice. Facilities described may or may not be supported

More information

Firewall Defaults and Some Basic Rules

Firewall Defaults and Some Basic Rules Firewall Defaults and Some Basic Rules ProSecure UTM Quick Start Guide This quick start guide provides the firewall defaults and explains how to configure some basic firewall rules for the ProSecure Unified

More information

Quick Installation Guide For Mac users

Quick Installation Guide For Mac users Quick Installation Guide For Mac users Packing List 1) IP CAMERA X 1 2) Wi-Fi Antenna (only available for wireless model) 3) DC Power Supply X 1 4) Network Cable X 1 5) Mounting bracket 1 6) CD X 1 (Include

More information

FRITZ!Box 6840 LTE. Configuration and Operation

FRITZ!Box 6840 LTE. Configuration and Operation FRITZ!Box 6840 LTE Configuration and Operation Table of Contents Symbols and Highlighting........................ 7 1 Getting to Know FRITZ!Box........................ 8 1.1 FRITZ!Box at a Glance.....................................

More information

FRITZ!Box Products Secure high-speed surfing and convenient telephoning over the Internet

FRITZ!Box Products Secure high-speed surfing and convenient telephoning over the Internet www.avm.de More about FRITZ!: To find out more, please visit www.avm.de. AVM GmbH for International Communication Technology Alt-Moabit 95 10559 Berlin, Germany Phone: +49-30-3 99 76-3 Fax: +49-30-3 99

More information

How to publish your NAS on the internet ThecusOS 6

How to publish your NAS on the internet ThecusOS 6 How to publish your NAS on the internet ThecusOS 6 2013/11 Contents Overview...3 Before you start...3 Checking your network environment....3 Making your Thecus NAS accessible via the Internet...4 Step

More information

Quick Installation Guide-For MAC users

Quick Installation Guide-For MAC users Quick Installation Guide-For MAC users Packing List 1) IP CAMERA X 1 2) Wi-Fi Antenna (only available for wireless model) 3) DC Power Supply X 1 4) Network Cable X 1 5) Mounting bracket 1 6) CD X 1 (Include

More information

Owner of the content within this article is www.isaserver.org Written by Marc Grote www.it-training-grote.de

Owner of the content within this article is www.isaserver.org Written by Marc Grote www.it-training-grote.de Owner of the content within this article is www.isaserver.org Written by Marc Grote www.it-training-grote.de Microsoft Forefront TMG How to use TMG network templates Abstract In this article I will show

More information

Using TestLogServer for Web Security Troubleshooting

Using TestLogServer for Web Security Troubleshooting Using TestLogServer for Web Security Troubleshooting Topic 50330 TestLogServer Web Security Solutions Version 7.7, Updated 19-Sept- 2013 A command-line utility called TestLogServer is included as part

More information

Attacking VoIP Networks

Attacking VoIP Networks Attacking VoIP Networks Hendrik Scholz Freenet Cityline GmbH http://freenet.de/ German ISP + PSTN carrier > 700,000 DSL customers high VoIP acceptance VoIP enabled routers

More information

BLOOMBERG ANYWHERE FOR MOBILE CUSTOMERS

BLOOMBERG ANYWHERE FOR MOBILE CUSTOMERS BLOOMBERG ANYWHERE FOR MOBILE CUSTOMERS Software & Connectivity Requirements 11 March 2014 Version: 1.03 BLOOMBERG ANYWHERE users have access to their information on a variety of mobile platforms including

More information

Quick Installation Guide

Quick Installation Guide Packing List Quick Installation Guide Quick Installation Guide 1) IP CAMERA X 1 2) Wi-Fi Antenna (only available for wireless model) 3) DC Power Supply X 1 4) Network Cable X 1 5) Mounting bracket 1 6)

More information

FRITZ!Box 6810 LTE. Installation and Operation

FRITZ!Box 6810 LTE. Installation and Operation FRITZ!Box 6810 LTE Installation and Operation Table of Contents Symbols and Highlighting........................ 6 1 The FRITZ!Box 6810 LTE.......................... 7 2 Ports, Interfaces, Buttons and

More information

VPN Configuration Guide. AVM FRITZ!Box

VPN Configuration Guide. AVM FRITZ!Box VPN Configuration Guide AVM FRITZ!Box 2013 equinux AG and equinux USA, Inc. All rights reserved. Under copyright law, this manual may not be copied, in whole or in part, without the written consent of

More information

Virtual Server in SP883

Virtual Server in SP883 Virtual Server in SP883 1 Introduction: 1.1 Micronet SP883 is a hard QoS broadband router, means its guaranteed service can provide absolute reservation of resource (bandwidth) for specific traffic;not

More information

Quick Installation Guide

Quick Installation Guide V2.01 Wired Camera Quick Installation Guide (For Windows OS) FI8620 ShenZhen Foscam Intelligent Technology Co., Ltd Packing List Quick Installation Guide FI8620 Quick Installation Guide 1) IP CAMERA X

More information

Quick Set Up Guide. Fritz!Box 7360

Quick Set Up Guide. Fritz!Box 7360 1 Quick Set Up Guide Fritz!Box 7360 Contents Step 1: Unpack Contents Page 3 Step 2: Connect the 12V 2A DC Power Supply Unit (PSU) Page 4 Step 3: Connect the DSL Phone Cable Page 5 Step 4: Enable Network

More information

Enterprise Security Interests Require SSL with telnet server from outside the LAN

Enterprise Security Interests Require SSL with telnet server from outside the LAN Create and Use an SSL on Goals Provide secure and encrypted 5250 data stream conversations with the server (including authentication) use a digital certificate we create with Digital Manager Show a client

More information

DIGITUS Plug&View IP cameras

DIGITUS Plug&View IP cameras DIGITUS Plug&View IP cameras Quick Installation Guide (QIG) What's in the box 1 X Plug&View IP camera 1 X power supply with cable 1 X Ethernet cable 1 X Quick Installation Guide 1 X CD with utilities 1

More information

Setting up and creating a Local Area Network (LAN) within Windows XP by Buzzons

Setting up and creating a Local Area Network (LAN) within Windows XP by Buzzons Setting up and creating a Local Area Network (LAN) within Windows XP by Buzzons Step 1) Open the start menu, navigate to control panel, and select your network card: Step 2) Click the network card, to

More information

SIP Phones Compatibility List 20.04.2007

SIP Phones Compatibility List 20.04.2007 Page 1 / 6 Allnet AVM Cisco Elmeg ALL7950 Fritz!box Fon WLAN 7960 290 Phone Terminal Adapter Phone Phone v.02.09.23 08.03.1937 P0S3-07-1-00 3.60 - - - - NT / NT NT / NT NT / NT NT / NT (only local hold

More information

Chapter 3 Management. Remote Management

Chapter 3 Management. Remote Management Chapter 3 Management This chapter describes how to use the management features of your ProSafe 802.11a/g Dual Band Wireless Access Point WAG102. To access these features, connect to the WAG102 as described

More information

How To Use The Fritz!Box (A Computer)

How To Use The Fritz!Box (A Computer) FRITZ!Box 7330 Installation and Operation Table of Contents Symbols and Highlighting........................ 7 1 The FRITZ!Box 7330............................. 8 2 Ports, Interfaces, Buttons and LEDs................

More information

SNMP Manager User s Manual

SNMP Manager User s Manual SNMP Manager User s Manual Table of Contents 1. Introduction...2 2. SNMP Manager Install, Quick Start and Uninstall...2 2.1. Software Installation...2 2.2. Software Quick Start...2 2.3. Software Uninstall...2

More information

FRITZ!WLAN Repeater 300E. Configuring and Operating

FRITZ!WLAN Repeater 300E. Configuring and Operating 891186001 FRITZ!WLAN Repeater 300E Configuring and Operating Table of Contents Symbols and Highlighting........................ 4 1 Getting to Know FRITZ!WLAN Repeater 300E.......... 5 1.1 FRITZ!WLAN Repeater

More information

Chapter 4 Management. Viewing the Activity Log

Chapter 4 Management. Viewing the Activity Log Chapter 4 Management This chapter describes how to use the management features of your NETGEAR WG102 ProSafe 802.11g Wireless Access Point. To get to these features, connect to the WG102 as described in

More information

Preparing for GO!Enterprise MDM On-Demand Service

Preparing for GO!Enterprise MDM On-Demand Service Preparing for GO!Enterprise MDM On-Demand Service This guide provides information on...... An overview of GO!Enterprise MDM... Preparing your environment for GO!Enterprise MDM On-Demand... Firewall rules

More information

PCTV Systems Requirements for using DistanTV mobile

PCTV Systems Requirements for using DistanTV mobile PCTV Systems Requirements for using DistanTV mobile PCTV Systems Requirements for using DistanTV mobile GB/US February 2010 2010 PCTV Systems S.à r.l. All rights reserved. No part of this manual may be

More information

SSC 1.5+ - Getting rid of the biggest drag on VoIP!

SSC 1.5+ - Getting rid of the biggest drag on VoIP! SSC 1.5+ - Getting rid of the biggest drag on VoIP! Internet Cloud Internet access for web pages is always allowed! But firewalls often block strictly VoIP calls! Typical scenario Without SSC (Simple SIP

More information

Gateway Portal Load Balancing

Gateway Portal Load Balancing Gateway Portal Load Balancing Pre-requisites We advise you to start by reading our Load Balancing overview. Generated Clients and Web Access There are two ways to connect to a Load Balanced cluster: Using

More information

Owner of the content within this article is www.isaserver.org Written by Marc Grote www.it-training-grote.de

Owner of the content within this article is www.isaserver.org Written by Marc Grote www.it-training-grote.de Owner of the content within this article is www.isaserver.org Written by Marc Grote www.it-training-grote.de Microsoft Forefront TMG How to use SQL Server 2008 Express Reporting Services Abstract In this

More information

SIP Phones Compatibility List 16.10.2008

SIP Phones Compatibility List 16.10.2008 Page 1 / 6 Allnet ASCOM AVM Cisco Elmeg ALL7950 i75 Fritz!box Fon WLAN 7960 290 Phone WLAN (WiFi) Phone Terminal Adapter Phone Phone v.02.09.23 1.6.5 08.03.1937 P0S3-07-1-00 3.60 NT / NT - NT / NT NT /

More information

BP9 - Citrix Receiver Optimierung: So verbessern Sie Management und Benutzerkomfort. Systems Engineer, Citrix Systems GmbH

BP9 - Citrix Receiver Optimierung: So verbessern Sie Management und Benutzerkomfort. Systems Engineer, Citrix Systems GmbH BP9 - Citrix Receiver Optimierung: So verbessern Sie Management und Benutzerkomfort Oliver Lomberg Ralph Stocker Systems Engineer, Citrix Systems GmbH Systems Engineer, Citrix Systems GmbH Simplicity vs.

More information

Active Directory Services with Windows Server 2012 MOC 10969

Active Directory Services with Windows Server 2012 MOC 10969 Active Directory Services with Windows Server 2012 MOC 10969 In dem Seminar MS-10969: Active Directory Services with Windows Server lernen Sie die Administration von Active Directory-Technologien in Windows

More information

Port forwarding and viewing your IP camera from the internet

Port forwarding and viewing your IP camera from the internet Spy On A Bird TM Port forwarding and viewing your IP camera from the internet IP206W IP207W 12201 N NC Hwy 150 Suite 22 PMB 244 Winston Salem, NC 27127 Phone: 800-606-6428 www.spyonabird.com E-mail: info@spyonabird.com

More information

Self Help Guide. Please read the following carefully; Synopsis: Requirements: A Computer with a working RJ45 LAN Port All Belkin Modem Routers

Self Help Guide. Please read the following carefully; Synopsis: Requirements: A Computer with a working RJ45 LAN Port All Belkin Modem Routers IMPORTANT! This Guide refers to the following Products: Establishing A Connection From PC To Router Please read the following carefully; Synopsis: This Self-Help Guide is designed to assist you if you

More information

UPnP-Based Sensor Network Management Architecture

UPnP-Based Sensor Network Management Architecture -Based Sensor Network Management Architecture Hyungjoo Song, Daeyoung Kim, Kangwoo Lee, Jongwoo Sung Real-time and Embedded Systems Lab Information and Communications University {iamhjoo, kimd, kangn2,

More information

IP Telefonie mit Cisco CallManager

IP Telefonie mit Cisco CallManager IP Telefonie mit Cisco CallManager Hans-Jörg Elias HP European Network Competency Center 2003 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice

More information

Hills Professional Series NVRs and Cameras

Hills Professional Series NVRs and Cameras FAQs Hills Professional Series NVRs and Cameras (V1.1) 1. What is the default NVR resolution? By Default NVR video output resolution is 1080P. Resolution may be changed if necessary to suit the attached

More information

Precondition for a good understanding: knowledge of a higher programming language (e.g. C, Java, Perl, Pascal, Basic,... ) basic knowledge of html

Precondition for a good understanding: knowledge of a higher programming language (e.g. C, Java, Perl, Pascal, Basic,... ) basic knowledge of html Some Remarks about Dynamic Webpages Matthias K. Krause Hochschule für Telekommunikation, Leipzig University of Applied Sciences Deutsche Telekom krause@hft-leipzig.de Precondition for a good understanding:

More information

Konica Minolta s Optimised Print Services (OPS)

Konica Minolta s Optimised Print Services (OPS) Konica Minolta s Optimised Print Services (OPS) Document Collection Agent (DCA) System Requirements V1.1 Page 1 of 6 Table of Contents Installation location... 3 Network requirements... 4 System requirements...

More information

Universal Plug and Play and Port Control Protocol: The Advance Features of Dual Stack IPv4 and IPv6 Customer Premises Equipment

Universal Plug and Play and Port Control Protocol: The Advance Features of Dual Stack IPv4 and IPv6 Customer Premises Equipment Universal Plug and Play and Port Control Protocol: The Advance Features of Dual Stack IPv4 and IPv6 Customer Premises Equipment Ihsan Lumasa Rimra1*, Wiwik Wiharti2, Surfa Yondri3 1 Department of Telecommunication

More information

ARCSERVE UNIFIED DATA PROTECTION SUPPORT FOR EMC CLOUDARRAY

ARCSERVE UNIFIED DATA PROTECTION SUPPORT FOR EMC CLOUDARRAY ARCSERVE UNIFIED DATA PROTECTION SUPPORT FOR EMC CLOUDARRAY EMC CloudArray is a cloud storage gateway, which utilizes cloud storage from one or many, public or private, cloud providers to extend existing

More information

HRG Performance Series DVR DDNS Support Application Note (DynDNS)

HRG Performance Series DVR DDNS Support Application Note (DynDNS) HRG Performance Series DVR DDNS Support Application Note (DynDNS) This document describes how to enable and configure Dynamic DNS (DDNS) functionality on the HRG Performance Series digital video recorder

More information

Device Log Export ENGLISH

Device Log Export ENGLISH Figure 14: Topic Selection Page Device Log Export This option allows you to export device logs in three ways: by E-Mail, FTP, or HTTP. Each method is described in the following sections. NOTE: If the E-Mail,

More information

Installation, configuration and operation. FRITZ!Box. Fon WLAN 7570 vdsl

Installation, configuration and operation. FRITZ!Box. Fon WLAN 7570 vdsl Installation, configuration and operation FRITZ!Box Fon WLAN 7570 vdsl Legal Notice Legal Notice FRITZ!Box Fon WLAN 7570 vdsl This documentation and the software it describes are protected by copyright.

More information

FRITZ!Box Fon WLAN 7050

FRITZ!Box Fon WLAN 7050 FRITZ!Box Fon WLAN 7050 This manual and the software it describes are protected by copyright. The manual and software as presented are the object of a license agreement and may be used only in accordance

More information

DDNS Management System User Manual V1.0

DDNS Management System User Manual V1.0 DDNS Management System User Manual V1.0 1 03/01/2012 Table of Contents 1. Introduction.3 2. Network Configuration 3 2.1. Configuring DDNS locally through DVR Menu..3 2.2. Configuring DDNS through Internet

More information

Quick Installation Guide

Quick Installation Guide IP Wireless / Wired Camera Quick Installation Guide (For Windows OS) Model:FI8908W Color: Black Model:FI8908W Color: White ShenZhen Foscam Intelligent Technology Co., Ltd Packing List FI8908W Quick Installation

More information

Basics of Port Forwarding on a Router for Security DVR s

Basics of Port Forwarding on a Router for Security DVR s Basics of Port Forwarding on a Router for Security DVR s The basic concept of setting up your router to allow for Off Site access to your DVR involves setting up the two necessary ports the Security DVR

More information

FRITZ!Box 7490. Installation and Operation

FRITZ!Box 7490. Installation and Operation FRITZ!Box 7490 Installation and Operation Table of Contents Security and Handling........................... 8 Safety Instructions........................................ 8 Handling the FRITZ!Box....................................

More information

Quick Guide of Remote Monitoring via PC or Mobile Phone

Quick Guide of Remote Monitoring via PC or Mobile Phone Quick Guide of Remote Monitoring via PC or Mobile Phone (DVR or NVR as the back-end surveillance device) Thank you for purchasing our product. This manual applies to remote viewing via PC or mobile phone.

More information

AP6511 First Time Configuration Procedure

AP6511 First Time Configuration Procedure AP6511 First Time Configuration Procedure Recommended Minimum Configuration Steps From the factory, all of the 6511 AP s should be configured with a shadow IP that starts with 169.254.xxx.xxx with the

More information

Volume. Instruction Manual

Volume. Instruction Manual Volume 1 Instruction Manual Networking EVERFOCUS ELECTRONICS CORPORATION Networking Instruction Guide 2004 Everfocus Electronics Corp 2445 Huntington Drive Phone 626.844.8888 Fax 626.844.8838 All rights

More information

Enhanced Password Security - Phase I

Enhanced Password Security - Phase I Enhanced Password Security - Phase I Feature History 120(18)S This feature was introduced This document describes the Enhanced Password Security feature in It includes the following sections: Feature Overview,

More information

Ethernet I/O System. SNMP manual V1.0

Ethernet I/O System. SNMP manual V1.0 Wachendorff Prozesstechnik GmbH & Co. KG Industriestraße 7 D-65366 Geisenheim Tel.: +49 (0) 67 22 / 99 65-20 Fax: +49 (0) 67 22 / 99 65-78 www.wachendorff-prozesstechnik.de Ethernet I/O System SNMP manual

More information

Asterisk und Mediagateways

Asterisk und Mediagateways Asterisk und Mediagateways Amoocon 2009 Sven Neukirchner s.neukirchner@nicos-epler-keller.de Was ist ein Mediagateway? Ein Mediagateway wandelt digitale Sprach-, Audio- oder Bildinformationen, von einem

More information

TI IS-1007 v1.0. TeamConnect. Network and IT configuration

TI IS-1007 v1.0. TeamConnect. Network and IT configuration TI IS-1007 v1.0 TeamConnect Network and IT configuration Contents Contents Introduction...3 Configuration and connection possibilities...4 System configuration...5 Network information...7 Core network

More information

Websense Web Security Gateway: Integrating the Content Gateway component with Third Party Data Loss Prevention Applications

Websense Web Security Gateway: Integrating the Content Gateway component with Third Party Data Loss Prevention Applications Websense Web Security Gateway: Integrating the Content Gateway component with Third Party Data Loss Prevention Applications November, 2010 2010 Websense, Inc. All rights reserved. Websense is a registered

More information

1. Hardware Installation

1. Hardware Installation 4 Port 10/100M Internet Broadband Router with USB Printer server Quick Installation Guide #4824904AXZZ0 1. Hardware Installation A. System Requirement Before you getting started, make sure that you meet

More information

Amcrest 960H DVR Quick Start Guide

Amcrest 960H DVR Quick Start Guide Amcrest 960H DVR Quick Start Guide Welcome Thank you for purchasing our Amcrest 960H DVR! This quick start guide will help you become familiar with our DVR in a very short time. Before installation and

More information

RESIDENTIAL GATEWAY. Model TG784n USER MANUAL

RESIDENTIAL GATEWAY. Model TG784n USER MANUAL RESIDENTIAL GATEWAY Model TG784n USER MANUAL version 2011 CONTENTS TECHINICAL SPECIFICATIONS HARDWARE SETUP LED BEHAVIOR INSTALLATION REQUIREMENTS EASY SETUP MANUAL SETUP WIRELESS CONFIGURATION PORT FORWARDING

More information

Vega 100G and Vega 200G Gamma Config Guide

Vega 100G and Vega 200G Gamma Config Guide Vega 100G and Vega 200G Gamma Config Guide This document aims to go through the steps necessary to configure the Vega 100G and 200G gateways to be used with a Gamma SIP Trunk. When a SIP trunk is provisioned

More information

OV704WVG Product Specifications

OV704WVG Product Specifications OV704WVG Product s OvisLink (Canada) INC All Rights Reserved. System Spec Chipset Switch Wi-Fi Voice DDR Flash Feature and Technical Spec ADSL Features VDSL Features Wireless Features External Connectors

More information

Prerequisites. Creating Profiles

Prerequisites. Creating Profiles Prerequisites Make sure you have the following prerequisites completed: Determine what the FQDN will be and what virtual IP Address will be used. Add the FQDN and virtual IP into your company's DNS. Create

More information

Installation, Configuration and Operation. FRITZ!Box

Installation, Configuration and Operation. FRITZ!Box Installation, Configuration and Operation FRITZ!Box Fon WLAN 7390 Legal Notice FRITZ!Box Fon WLAN 7390 This documentation and the software it describes are protected by copyright. AVM grants the nonexclusive

More information

TENVIS Technology Co., Ltd. User Manual. For H.264 Cameras. Version 2.0.0

TENVIS Technology Co., Ltd. User Manual. For H.264 Cameras. Version 2.0.0 TENVIS Technology Co., Ltd User Manual For H.264 Cameras Version 2.0.0 Catalogue Basic Operation... 3 Hardware Installation... 3 Search Camera... 3 Get live video... 5 Camera Settings... 8 System... 8

More information

Load Balancing BEA WebLogic Servers with F5 Networks BIG-IP

Load Balancing BEA WebLogic Servers with F5 Networks BIG-IP Load Balancing BEA WebLogic Servers with F5 Networks BIG-IP Introducing BIG-IP load balancing for BEA WebLogic Server Configuring the BIG-IP for load balancing WebLogic Servers Introducing BIG-IP load

More information

SNMP Web card. User s Manual. Management Software for Uninterruptible Power Supply Systems

SNMP Web card. User s Manual. Management Software for Uninterruptible Power Supply Systems SNMP Web card User s Manual Management Software for Uninterruptible Power Supply Systems Table of Contents 1. Overview... 3 1.1 Introduction... 3 1.2 Features... 3 1.3 Overlook... 3 1.4 Installation and

More information

Enhanced Password Security - Phase I

Enhanced Password Security - Phase I Enhanced Password Security - Phase I Feature History 120(18)S 121(8a)E 122(14)S This feature was introduced Support for this feature was integrated into Cisco IOS Release 121(8a)E This feature was integrated

More information

FortiVoice. Version 7.00 VoIP Configuration Guide

FortiVoice. Version 7.00 VoIP Configuration Guide FortiVoice Version 7.00 VoIP Configuration Guide FortiVoice Version 7.00 VoIP Configuration Guide Revision 2 14 October 2011 Copyright 2011 Fortinet, Inc. All rights reserved. Contents and terms are subject

More information

TW100-BRF114 Firewall Router. User's Guide. Cable/DSL Internet Access. 4-Port Switching Hub

TW100-BRF114 Firewall Router. User's Guide. Cable/DSL Internet Access. 4-Port Switching Hub TW100-BRF114 Firewall Router Cable/DSL Internet Access 4-Port Switching Hub User's Guide Table of Contents CHAPTER 1 INTRODUCTION...1 TW100-BRF114 Features...1 Package Contents...3 Physical Details...

More information

FRITZ!Box Fon WLAN 7140

FRITZ!Box Fon WLAN 7140 FRITZ!Box Fon WLAN 7140 This manual and the software it describes are protected by copyright. AVM grants the non-exclusive right to use the software, which is supplied exclusively in what is known as object

More information

FRITZ!Box Fon ata. 2 FRITZ!Box Fon ata. AVM GmbH 2005. All rights reserved. Documentation release 06/2005

FRITZ!Box Fon ata. 2 FRITZ!Box Fon ata. AVM GmbH 2005. All rights reserved. Documentation release 06/2005 FRITZ!Box Fon ata This manual and the software it describes are protected by copyright. The manual and software as presented are the object of a license agreement and may be used only in accordance with

More information

A Beginner s guide to send data to Device Cloud from a ZigBee Network

A Beginner s guide to send data to Device Cloud from a ZigBee Network A Beginner s guide to send data to Device Cloud from a ZigBee Network 1 Document History Date Version Change Description Author 12 Sep 14 1.0 Initial Release Ankur Mathur Copyright 2014 Digi International

More information

Chapter 6 Configuring the SSL VPN Tunnel Client and Port Forwarding

Chapter 6 Configuring the SSL VPN Tunnel Client and Port Forwarding Chapter 6 Configuring the SSL VPN Tunnel Client and Port Forwarding This chapter describes the configuration for the SSL VPN Tunnel Client and for Port Forwarding. When a remote user accesses the SSL VPN

More information

End of Sale/End of Life Report Tool Usage Notes for CiscoWorks NCM 1.6

End of Sale/End of Life Report Tool Usage Notes for CiscoWorks NCM 1.6 End of Sale/End of Life Report Tool Usage Notes for CiscoWorks NCM 1.6 October 2010, These usage notes provide information on using the End of Sale/End of Life Report tool that is available with CiscoWorks

More information

Quick Installation Guide

Quick Installation Guide IP Wireless / Wired Camera Quick Installation Guide (For Mac OS) Model:FI8908W Color: Black Model:FI8908W Color: White ShenZhen Foscam Intelligent Technology Co., Ltd Quick Installation Guide-For MAC users

More information

D-LINK DPH-140S SIP PHONE INSTALLATION GUIDE

D-LINK DPH-140S SIP PHONE INSTALLATION GUIDE pag.1 D-LINK DPH-140S SIP PHONE INSTALLATION GUIDE pag.2 SUMMARY SKYPHO VOIP SERVICE...3 DPH-140S PACKAGE CONTENT...3 DEVICE PHYSICAL CONNECTION...4 ACCESS TO THE DEVICE...6 Accesso to the IP Phone when

More information

User Manual Network Interface

User Manual Network Interface User Manual Network Interface Rev. 1.00 SRP-350plusll SRP-352plusll http://www.bixolon.com Table of Contents 1. Manual Information...3 2. Specifications...3 2-1 Hardware version...3 2-2 Configuration Tool...3

More information

How to add your Weebly website to a TotalCloud hosted Server

How to add your Weebly website to a TotalCloud hosted Server How to add your Weebly website to a TotalCloud hosted Server Creating your Weebly website: 1.) Go to weebly.com and create a free account. 2.) Build and design your personal website using the Weebly features.

More information

Update to V10. Automic Support: Best Practices Josef Scharl. Please ask your questions here http://innovate.automic.com/q&a Event code 6262

Update to V10. Automic Support: Best Practices Josef Scharl. Please ask your questions here http://innovate.automic.com/q&a Event code 6262 Update to V10 Automic Support: Best Practices Josef Scharl Please ask your questions here http://innovate.automic.com/q&a Event code 6262 Agenda Update to Automation Engine Version 10 Innovations in Version

More information

DHCP Server Port-Based Address Allocation

DHCP Server Port-Based Address Allocation The feature provides port-based address allocation support on the Cisco IOS Dynamic Host Configuration Protocol (DHCP) server for the Ethernet platform. The DHCP server provides address assignment support

More information

NPort. Copyright 2008 Moxa Inc. Released on July 15, 2008

NPort. Copyright 2008 Moxa Inc. Released on July 15, 2008 Moxa Technical Support Team support@moxa.com This Tech Note applies to the NPort device servers. The following models are included: NPort DE-211 NPort DE-311 NPort DE-311M NPort 5100 series NPort 5200

More information

KNX IP Interface 730 KNX IP Router 750 KNX IP LineMaster 760 KNX IP BAOS 770 KNX IP BAOS 771 KNX IP BAOS 772 KNX IP BAOS 777

KNX IP Interface 730 KNX IP Router 750 KNX IP LineMaster 760 KNX IP BAOS 770 KNX IP BAOS 771 KNX IP BAOS 772 KNX IP BAOS 777 KNX IP Interface 730 KNX IP Router 750 KNX IP LineMaster 760 KNX IP BAOS 770 KNX IP BAOS 771 KNX IP BAOS 772 KNX IP BAOS 777 Remote access with the ETS Achatz 3 DE-84508 Burgkirchen Tel.: 08677 / 91 636

More information

Upgrading User-ID. Tech Note PAN-OS 4.1. 2011, Palo Alto Networks, Inc.

Upgrading User-ID. Tech Note PAN-OS 4.1. 2011, Palo Alto Networks, Inc. Upgrading User-ID Tech Note PAN-OS 4.1 Revision B 2011, Palo Alto Networks, Inc. Overview PAN-OS 4.1 introduces significant improvements in the User-ID feature by adding support for multiple user directories,

More information

LICENSE4J LICENSE ACTIVATION AND VALIDATION PROXY SERVER USER GUIDE

LICENSE4J LICENSE ACTIVATION AND VALIDATION PROXY SERVER USER GUIDE LICENSE4J LICENSE ACTIVATION AND VALIDATION PROXY SERVER USER GUIDE VERSION 1.6.0 LICENSE4J www.license4j.com Table of Contents Getting Started... 2 Installation... 3 Configuration... 4 Error and Access

More information