Supported Platforms
Related Documentation
- ACX, EX, M, MX, QFX, SRX, T Series
- NETCONF XML Management Protocol and Junos XML API Overview
- EX, M, MX, QFX, SRX, T Series
- NETCONF Java Toolkit Class: Device
- NETCONF Java Toolkit Class: NetconfSession
- NETCONF Java Toolkit Class: XML
- NETCONF Java Toolkit Class: XMLBuilder
- Downloading and Installing the NETCONF Java Toolkit
- Creating and Executing a NETCONF Java Toolkit Program File
NETCONF Java Toolkit Overview
The NETCONF Java toolkit provides an object-oriented interface for communicating with a NETCONF server. The toolkit enables programmers familiar with the Java programming language to easily connect to a device, open a NETCONF session, construct configuration hierarchies in XML, and create and execute operational and configuration requests. You can create your own Java applications to manage and configure routing, switching, and security devices.
The NETCONF Java toolkit provides classes with methods that implement the functionality of the NETCONF protocol operations defined in RFC 4741. All basic protocol operations are supported. The NETCONF XML management protocol uses XML-based data encoding for configuration data and remote procedure calls. The toolkit provides classes and methods that aid in creating, modifying, and parsing XML.
The NETCONF Java toolkit has four basic classes, which are described in Table 1.
Table 1: NETCONF Java Toolkit Classes
Class | Summary |
---|---|
Device | Defines the device on which the NETCONF server runs, and represents the SSHv2 connection and default NETCONF session with that device. |
NetconfSession | Represents a NETCONF session established with the device on which the NETCONF server runs. |
XMLBuilder | Creates XML-encoded data. |
XML | XML-encoded data that represents an operational or configuration request or configuration data. |
A configuration management server is generally a PC or workstation that is used to configure a router, switch, or security device remotely. The communication between the configuration management server and the NETCONF server via the NETCONF Java toolkit involves:
- Establishing a NETCONF session over SSHv2 between the configuration management server and the NETCONF server.
- Creating RPCs corresponding to requests and sending these requests to the NETCONF server.
- Receiving and processing the RPC replies from the NETCONF server.
To use the NETCONF Java toolkit, you must install the toolkit
and add the .jar
path to your CLASSPATH.
For more information about installing the NETCONF Java toolkit, see Downloading and Installing the NETCONF Java Toolkit.
Once the toolkit is installed, you connect to a device, create a NETCONF session, and execute operations by adding the associated code to a Java program file, which is then compiled and executed. For more information about creating NETCONF Java toolkit programs, see Creating and Executing a NETCONF Java Toolkit Program File.
![]() | Note: Juniper Networks devices running Junos OS Release 7.5R1 or later support the NETCONF XML management protocol. |
Related Documentation
- ACX, EX, M, MX, QFX, SRX, T Series
- NETCONF XML Management Protocol and Junos XML API Overview
- EX, M, MX, QFX, SRX, T Series
- NETCONF Java Toolkit Class: Device
- NETCONF Java Toolkit Class: NetconfSession
- NETCONF Java Toolkit Class: XML
- NETCONF Java Toolkit Class: XMLBuilder
- Downloading and Installing the NETCONF Java Toolkit
- Creating and Executing a NETCONF Java Toolkit Program File
Published: 2013-07-26
Supported Platforms
Related Documentation
- ACX, EX, M, MX, QFX, SRX, T Series
- NETCONF XML Management Protocol and Junos XML API Overview
- EX, M, MX, QFX, SRX, T Series
- NETCONF Java Toolkit Class: Device
- NETCONF Java Toolkit Class: NetconfSession
- NETCONF Java Toolkit Class: XML
- NETCONF Java Toolkit Class: XMLBuilder
- Downloading and Installing the NETCONF Java Toolkit
- Creating and Executing a NETCONF Java Toolkit Program File