I want to check how BGP connection is built between peers.so first I write below two commands for one of peer
Router bgp 1
Neighbor 192.168.12.2 remote-as 1
I see some information from debug output at once
*Mar 1 00:17:49.447: BGP: 192.168.12.2 went from Idle to Active
*Mar 1 00:17:49.455: BGP: 192.168.12.2 open active delayed 29431ms (35000ms max, 28% jitter)
First question: why BGP status goes from idle to active even if I don’t start BGP on the remote peer? there is not a direct way from idle to active in BGP FSM

Second question: you could see that (35000ms max, 28% jitter). what is the timer and how does this timer work?
Thanks a lot
Martin