# File lib/faker/internet.rb, line 130
      def reserved_nets_regex
        [
          /^0\./,                 # 0.0.0.0      – 0.255.255.255
          /^192\.0\.2\./,         # 192.0.2.0    – 192.0.2.255
          /^192\.88\.99\./,       # 192.88.99.0  – 192.88.99.255
          /^198\.51\.100\./,      # 198.51.100.0 – 198.51.100.255
          /^203\.0\.113\./,       # 203.0.113.0  – 203.0.113.255
          /^(22[4-9]|23\d)\./,    # 224.0.0.0    – 239.255.255.255
          /^(24\d|25[0-5])\./     # 240.0.0.0    – 255.255.255.254  and  255.255.255.255
        ]
      end