Radius manager export

How to export customer’s data from Radius manager including the name of services and non-encrypted passwords: select rm_users.*, radcheck.value, rm_services.srvname from rm_users left join radcheck on rm_users.username = radcheck.username left join rm_services on rm_services.srvid = rm_users.srvid  where radcheck.attribute = ‘Cleartext-Password’ or select rm_users.*, radcheck.value, rm_services.srvname from rm_users left join radcheck on rm_users.username = radcheck.username left[…]

Mikrotik MPLS implementation issues

We are running MPLS on RouterOS for over one year and still I’m getting new errors in MPLS implementation on RouterOS. Below is a list of all issues, I’ve found (versions < 6.33) : 1. The main problem is separation of VRFs. RouterOS is a linux based system and all VRF tables are linux routing[…]

IPv6 transition mechanisms

There are plenty of IPv6 transition technologies and I always forget some of them. Below is the list with description to have a quick reminder always when it’s needed. I’m considering all technologies from ISP’s point of view : 1. Dual-stack The simplest one. All our infrastructure is IPv6 enabled and we give /64 prefix[…]

IPv6 security

In previous posts I shown how to network on IPv4. IPv6 is a different world, IPv4 ACLs and approach will not work. IPv6 traffic runs in parallel to IPv4 and IPv4 ACLs/Firewall will not block IPv6 traffic. The main problem of IPv6 is that even when you don’t enable IPv6 on routers, some of customers[…]

L2 and STP security on switches

We were talking about 6 L2 attacks in topic about DHCP snooping. There are also different attacks on switching technologies.One of the main L2 technologies is VLAN. VLAN hopping 1) Spoofing of switch Attacker is connecting to access port and is changing it to trunk Mitigation is very simple – disable DTP negotiation on trunk[…]

IP dhcp snooping – first hop security on IPv4

When we connect customers to Access switch we immediately face these security threats : DHCP spoofing – some PC in the network will run DHCP server. It can be cause even by wrong configuration of Windows machine. In this case, some of computers inside LAN will connect to new DHCP server and will forward packets[…]