Getting Started with Network - Manage Network Peering In Same Subscription - in Java

Azure Network sample for enabling and updating network peering between two virtual networks

Summary ...

- This sample creates two virtual networks in the same subscription and then peers them, modifying various options on the peering.

Details ...

1. Create two virtual networks, network "A" and network "B"... - network A with two subnets - network B with one subnet - the networks' address spaces must not overlap - the networks must be in the same region

2. Peer the networks... - the peering will initially have default settings: - each network's IP address spaces will be accessible from the other network - no traffic forwarding will be enabled between the networks - no gateway transit between one network and the other will be enabled

3. Update the peering... - disable IP address space between the networks - enable traffic forwarding from network A to network B

4. Delete the peering - the removal of the peering takes place on both networks, as long as they are in the same subscription

Notes: - Once a peering is created, it cannot be pointed at another remote network later. - The address spaces of the peered networks cannot be changed as long as the networks are peered. - Gateway transit scenarios as well as peering networks in different subscriptions are possible but beyond the scope of this sample. - Network peering in reality results in pairs of peering objects: one pointing from one network to the other, and the other peering object pointing the other way. For simplicity though, the SDK provides a unified way to manage the peering as a whole, in a single command flow, without the need to duplicate commands for both sides of the peering, while enforcing the required restrictions between the two peerings automatically, as this sample shows. But it is also possible to modify each peering separately, which becomes required when working with networks in different subscriptions.

Running this Sample

To run this sample:

See DefaultAzureCredential and prepare the authentication works best for you. For more details on authentication, please refer to AUTH.md.

git clone https://github.com/Azure-Samples/network-java-manage-network-peering.git

cd network-java-manage-network-peering

mvn clean compile exec:java

More information

For general documentation as well as quickstarts on how to use Azure Management Libraries for Java, please see here.

If you find bug in the sample, please create an issue here.

Start to develop applications with Java on Azure here.

If you don't have a Microsoft Azure subscription you can get a FREE trial account here.


This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.