ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. FATeknollogee
    3. Posts
    • Profile
    • Following 3
    • Followers 2
    • Topics 155
    • Posts 1,984
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: VoIP Services and AUTO TOP-UP prepaid billing.

      I have no problem with "top-up".
      I set my "top-up" to replenish at $10, "top-up" charge is $80.
      I get an email alert & I get a notification on my phone from my Amex Corp.
      I also use Skyetel & Twilio.

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • F31: L2TP client - modp1024 is not supported?

      I have 5 vpn client profiles setup on my F31 Deepin desktop.
      Today, I try to connect & none of them work! (I was able to connect via Win10 vpn client).
      I was not aware that "modp1024" no longer worked?

      # systemctl status ipsec.service
      Failed to add connection "...": ike string error: IKE DH algorithm 'modp1024' is not supported
      

      Changed "modp1024" to "modp2048" & all is good.

      DeepinScreenshot_select-area_20200224171656.png

      posted in IT Discussion fedora 31 deepin l2tp ike
      FATeknollogeeF
      FATeknollogee
    • RE: EdgeRouter 4: setting up L2TP server

      @Dashrender

      firewall {
          all-ping enable
          broadcast-ping disable
          group {
              address-group trusted_IPs {
                  address 1.2.3.4
                  address 5.6.7.8
                  address 9.10.11.12
                  description "for remote GUI access"
              }
          }
          ipv6-name WANv6_IN {
              default-action drop
              description "WAN inbound traffic forwarded to LAN"
              enable-default-log
              rule 10 {
                  action accept
                  description "Allow established/related sessions"
                  state {
                      established enable
                      related enable
                  }
              }
              rule 20 {
                  action drop
                  description "Drop invalid state"
                  state {
                      invalid enable
                  }
              }
          }
          ipv6-name WANv6_LOCAL {
              default-action drop
              description "WAN inbound traffic to the router"
              enable-default-log
              rule 10 {
                  action accept
                  description "Allow established/related sessions"
                  state {
                      established enable
                      related enable
                  }
              }
              rule 20 {
                  action drop
                  description "Drop invalid state"
                  state {
                      invalid enable
                  }
              }
              rule 30 {
                  action accept
                  description "Allow IPv6 icmp"
                  protocol ipv6-icmp
              }
              rule 40 {
                  action accept
                  description "allow dhcpv6"
                  destination {
                      port 546
                  }
                  protocol udp
                  source {
                      port 547
                  }
              }
          }
          ipv6-receive-redirects disable
          ipv6-src-route disable
          ip-src-route disable
          log-martians enable
          name WAN_IN {
              default-action drop
              description "WAN to internal"
              rule 10 {
                  action accept
                  description "Allow established/related"
                  state {
                      established enable
                      related enable
                  }
              }
              rule 20 {
                  action drop
                  description "Drop invalid state"
                  state {
                      invalid enable
                  }
              }
          }
          name WAN_LOCAL {
              default-action drop
              description "WAN to router"
              rule 10 {
                  action accept
                  description "remote GUI"
                  destination {
                      port 443
                  }
                  log disable
                  protocol tcp
                  source {
                      group {
                          address-group trusted_IPs
                      }
                  }
              }
              rule 20 {
                  action accept
                  description "Allow established/related"
                  state {
                      established enable
                      related enable
                  }
              }
              rule 30 {
                  action accept
                  description ike
                  destination {
                      port 500
                  }
                  log disable
                  protocol udp
                  state {
                      invalid enable
                  }
              }
              rule 40 {
                  action accept
                  description esp
                  log disable
                  protocol esp
              }
              rule 50 {
                  action accept
                  description nat-t
                  destination {
                      port 4500
                  }
                  log disable
                  protocol udp
              }
              rule 60 {
                  action accept
                  description l2tp
                  destination {
                      port 1701
                  }
                  ipsec {
                      match-ipsec
                  }
                  log disable
                  protocol udp
              }
          }
          receive-redirects disable
          send-redirects enable
          source-validation disable
          syn-cookies enable
      }
      interfaces {
          ethernet eth0 {
              address 10.10.10.10/30
              description Internet
              duplex auto
              firewall {
                  in {
                      ipv6-name WANv6_IN
                      name WAN_IN
                  }
                  local {
                      ipv6-name WANv6_LOCAL
                      name WAN_LOCAL
                  }
              }
              speed auto
          }
          ethernet eth1 {
              address 10.15.20.254/24
              description "LAN 1"
              duplex auto
              speed auto
          }
          ethernet eth2 {
              address 192.168.2.254/24
              description "LAN 2"
              duplex auto
              speed auto
          }
          ethernet eth3 {
              duplex auto
              speed auto
          }
          loopback lo {
          }
      }
      port-forward {
          auto-firewall enable
          hairpin-nat disable
          wan-interface eth0
      }
      service {
          dhcp-server {
              disabled false
              hostfile-update disable
              shared-network-name LAN2 {
                  authoritative enable
                  subnet 192.168.2.0/24 {
                      default-router 192.168.2.254
                      dns-server 192.168.2.254
                      lease 86400
                      start 192.168.2.38 {
                          stop 192.168.2.43
                      }
                  }
              }
              static-arp disable
              use-dnsmasq disable
          }
          dns {
              forwarding {
                  cache-size 10000
                  listen-on eth1
                  listen-on eth2
                  name-server 1.1.1.1
                  name-server 9.9.9.9
              }
          }
          gui {
              http-port 80
              https-port 443
              older-ciphers enable
          }
          nat {
              rule 5010 {
                  description "masquerade for WAN"
                  outbound-interface eth0
                  type masquerade
              }
          }
          ssh {
              port 22
              protocol-version v2
          }
          unms {
              connection wss://
          }
      }
      system {
          domain-name ubnt
          gateway-address 10.10.10.1
          host-name ER4
          login {
              user ubnt {
                  authentication {
                      encrypted-password ubnt
                  }
                  level admin
              }
          }
          name-server 1.1.1.1
          name-server 9.9.9.9
          ntp {
              server 0.ubnt.pool.ntp.org {
              }
              server 1.ubnt.pool.ntp.org {
              }
              server 2.ubnt.pool.ntp.org {
              }
              server 3.ubnt.pool.ntp.org {
              }
          }
          offload {
              hwnat disable
              ipsec disable
          }
          syslog {
              global {
                  facility all {
                      level notice
                  }
                  facility protocols {
                      level debug
                  }
              }
          }
          time-zone UTC
      }
      vpn {
          ipsec {
              allow-access-to-local-interface disable
              auto-firewall-nat-exclude disable
              ipsec-interfaces {
                  interface eth0
              }
          }
          l2tp {
              remote-access {
                  authentication {
                      local-users {
                          username hello {
                              password 1234
                          }
                      }
                      mode local
                  }
                  client-ip-pool {
                      start 192.168.100.100
                      stop 192.168.100.110
                  }
                  dns-servers {
                      server-1 1.1.1.1
                      server-2 9.9.9.9
                  }
                  idle 1800
                  ipsec-settings {
                      authentication {
                          mode pre-shared-secret
                          pre-shared-secret 1234
                      }
                      ike-lifetime 3600
                      lifetime 3600
                  }
                  mtu 1492
                  outside-address 10.10.10.10
              }
          }
      }
      
      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: EdgeRouter 4: setting up L2TP server

      I reset the ER4 to factory default & started from scratch.

      Copy/paste (from UBNT site) of rule 30, does indeed set the "Invalid" check mark on the Advanced tab of Rule 30

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: EdgeRouter 4: setting up L2TP server

      Figured out the issue:

      Even though I copied/paste from here: https://help.ubnt.com/hc/en-us/articles/204950294-EdgeRouter-L2TP-IPsec-VPN-Server

      Looks like rule 30 did not copy correctly & I end up with the check mark - State "Invalid".

      Once, I unchecked "Invalid", VPN connects fine.

      Tomorrow, I'll wipe out the config & re-copy the rules, just to make sure I didn't mess up.

      DeepinScreenshot_select-area_20200217214852.png

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: VMware Community Homelabs

      Here's my desktop & by no stretch would I even call this a homelab!

      IMG_0306.jpg

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: VMware Community Homelabs

      @Obsolesce said in VMware Community Homelabs:

      @FATeknollogee said in VMware Community Homelabs:

      Aside from @scottalanmiller who else on here has a homelab ?

      ps, before you run to your keyboard, spare me the response, running a hypervisor on your laptop is NOT a home lab!

      I have a Raspberry Pi running.

      That's cute!

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: VMware Community Homelabs

      Aside from @scottalanmiller who else on here has a homelab ?

      ps, before you run to your keyboard, spare me the response, running a hypervisor on your laptop is NOT a home lab!

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: EdgeRouter 4: setting up L2TP server

      There as to be a line in the S2S config that "triggers" the VPN service ON?

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: EdgeRouter 4: setting up L2TP server

      It's strange that UBNT's docs/guides say nothing about this being an issue?

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: EdgeRouter 4: setting up L2TP server

      I just might have to put in some "fake" S2S config & move on?

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: EdgeRouter 4: setting up L2TP server

      @JaredBusch Thx for that heads up! Will try searching, maybe I'll get lucky!

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: EdgeRouter 4: setting up L2TP server

      C'mon, where are all the ER experts?

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • EdgeRouter 4: setting up L2TP server

      I took a stock ER4 (fw 2.0.8), followed this guide, performed steps 1 to 7 & 9, Configured the L2TP Server

      When I try to connect from F31 VPN client, I get an error "Disconnected. VPN service failed to start"

      I've done this plenty of times with other ER-4's & they just work, the only difference being those ER-4's also have S2S VPN's.

      What step am I missing?

      posted in IT Discussion edgerouter 4 l2tp vpn
      FATeknollogeeF
      FATeknollogee
    • VMware Community Homelabs

      Why don't we see this from the other Type-1 groups?

      One thing the VMware "community" is very good at is grass roots movement.

      From @lamw on Twitter:
      https://www.virtuallyghetto.com/2020/02/vmware-community-homelabs-project.html

      VMware Community Homelabs

      posted in IT Discussion vmware homelabs community
      FATeknollogeeF
      FATeknollogee
    • RE: Upgrading Debian 9 to 10

      2nd attempt worked!

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: Upgrading Debian 9 to 10

      1st attempt via GUI failed, I'll try again in a few minutes

      Last update attempt had failed.
      Timestamp: Today at 9:05
      Error: Failed to pull docker images. Please, try again later.
      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: Upgrading Debian 9 to 10

      @JaredBusch said in Upgrading Debian 9 to 10:

      @FATeknollogee said in Upgrading Debian 9 to 10:

      @JaredBusch Updating via GUI or CLI?
      Mine was attempted via CLI.

      I did it in the GUI. Normally do unless that fails.

      No issues.
      34d80f80-56bf-42e9-9339-64354e9c8d18-image.png

      Thanks for the info.
      Ok, let me go try from the GUI.

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: Upgrading Debian 9 to 10

      @JaredBusch Updating via GUI or CLI?
      Mine was attempted via CLI.

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • RE: Upgrading Debian 9 to 10

      @JaredBusch It definitely wasn't because of the OS.
      My previous upgrade to 1.14 (I was on Deb 10) was ok.

      posted in IT Discussion
      FATeknollogeeF
      FATeknollogee
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 99
    • 100
    • 4 / 100