Yahoo Poland Wyszukiwanie w Internecie

Search results

  1. 4 paź 2015 · If you want to iterate over the indexes of items in your list, use for in range(..): >>> for i in range(len(original_list)): ... if original_list[i] < 0: ... ... Alternatively, you might also want to use enumerate() if you need both item and index in loop's body: >>> for i, item in enumerate(original_list):

  2. 31 mar 2023 · The for i in range(len(x)) syntax is used when you encounter unique cases that require you to modify the original list or you want to access more than just the current item in the iteration. Most of the time, the syntax can be replaced with the enumerate() function, which also handles cases where you need more than just the item inside the ...

  3. 23 wrz 2021 · I don't have packet-tracer to check your full configuration, you say you've got EIGRP configured on all routers, is the traffic being routed unencrypted? Check "show crypto ipsec sa" on R0 and confirm there are active SAs to R4 and the counters encaps|decpas increase when PC1 pings the server.

  4. In GRE Configuration Example, we will Configure GRE Tunnels with Cisco Packet Tracer. We will learn Generic Routing Encapsulation commands.

  5. 1 sie 2017 · Step 1: Configure the Tunnel 0 interface of RA. a. Enter into the configuration mode for RA Tunnel 0. RA(config)# interface tunnel 0. b. Set the IP address as indicated in the Addressing Table. RA(config-if)# ip address 10.10.10.1 255.255.255.252. c. Set the source and destination for the endpoints of Tunnel 0. RA(config-if)# tunnel source s0/0/0.

  6. 6 paź 2024 · Cisco Packet Tracer allows IPSEC VPN configuration between routers. The example below presents a basic VPN configuration over a Frame Relay between Paris and New-York using Cisco 2811 routers.

  7. To loop through a set of code a specified number of times, we can use the range () function, The range () function returns a sequence of numbers, starting from 0 by default, and increments by 1 (by default), and ends at a specified number.