Time to add multicast to our MPLS series! Woot! In this blog we will start simple. We will focus on adding multicast to the customer portion of the network. In the NEXT blog I will show you how I have... Read More ›
The post mVPN Fun in the Lab: Add the Multicast at the Customer – Part 4 of 6 appeared first on Networking with FISH.
The post Worth Reading: Cloud Key and Key Escrow appeared first on 'net work.
By 2021, about 30% of workloads will run in the public cloud.
Customers get enhanced visibility into their workload traffic patterns.
a href=”http://ntwrk.guru/bgp-code-dive-8/”>In the last session of snaproute BGP code dive—number 8, in fact— I started looking at how snaproute’s BGP moves from connect to open. This is the chain of calls from that post—
The past post covered the first two steps in this process, so this post will begin with the third step, st.fsm.sendOpenMessage(). Note the function call has st.fm... in the front, so this is a call by reference. Each FSM that is spun up (think of them as threads, or even processes, if you must, to get this concept in your head, even though they’re not) can have its own copy of this function, with its own state. When reading the code to sort out how it works, this doesn’t have much practical impact, other than telling us the sendOpenMessage function we’re looking for is going to be in the FSM file. The function is located around line 1233 in fsm.go:
func (fsm *FSM) sendOpenMessage() {
optParams := packet.ConstructOptParams(uint32(fsm. Continue reading