Nicolás Victorero

Results 34 comments of Nicolás Victorero

After modifying that line ARP entries are added, ARP entry created in device view, and everything looks good. INFO - onodrim.defaultdomain: ARP cache fetched. 4 entries in 0 sec [...]...

Hello, I have this on production with several Palo Alto firewalls getting a few thousand ARP entries and working all right. One caveat I had was that on the PAN-PRODUCT-MIB.my...

@vink78 Hello Vincent. At least in my case netdot is not getting ip/mask or vlan information for the interfaces of the PaloAltos. I've read somewhere PaloAlto doesn't implement IP-MIB, so...

I'm having this warnings too. perl v5.28.1.

Hello, Do you prefer that I pull each device on each own and try to test IPV6 support prior to it?. Greetings

That's weird. On ipblock table definition use_network_broadcast doesn't have a default value but when inserting a new ipblock a value should be provided (can't be NULL), on my ipblock table...

Thank you Brian and mzgrave for the help. I closed this too fast. Now I can send control-p using $s->cmd("\cP") just fine, problem is I cannot send it from macros....

I've make it to the point where I can add the ip information to the interfaces and get the relevant networks created using the update_ip function in Interface.pm. What update_ip...

Solved the mac to IP thing with: ``` if ( my $phy = PhysAddr->search(address=>$ethernet)->first ) { my (@arp) = $phy->get_last_n_arp(1); my $ipb = Ipblock->retrieve($arp[0][0][1]); $address = $ipb->full_address; } ``` What...

For those walking on my shoes, it seems that "hidden" methods corresponds to the DBI abstraction and how it converts data from the database into objects. Relations are defined on...