Author: applegater

  • Our Cottage Getaway: Fixing Connections & Making Memories

    On our first day at the cottage, I dedicated my afternoon to an essential task: installing all the access points, wireless bridges, and replacing old, non-weatherproof cables with new wiring. It was a comprehensive setup, but I wanted to make sure our connection would be reliable for the stay.

    Unfortunately, on the second day, I noticed the NanoStation had gone offline. Upon investigation, I found the device irreparably damaged—most likely from an electrical surge. The connector had even melted! I got to work right away, replacing the Cat6 cable and installing a new connector. With the replacement NanoStation up and running, our internet connection was back to normal and stable.

    Despite the technical mishaps, the evenings were truly delightful. I thoroughly enjoyed spending quality time with Jasmine—we watched our favorite movies and TV series, cooked delicious meals together, and took a peaceful evening walk. We even treated ourselves to a cheat-day dessert as we relaxed and soaked in the vacation vibes.

    On our last day, we decided to set out and find the beach. However, our adventure took an unexpected turn when we got a bit lost and ended up at a “No Trespassing” sign, which left us feeling a little uneasy. Although we didn’t make it to the beach this time, we discovered a scenic trail and enjoyed a tranquil walk, taking in the natural beauty of the area. Afterwards, we strolled back to the hotel and then made our way to the cottage by car.

    Even though we missed the beach, the trip was full of memorable moments. We’re already looking forward to our next visit—hopefully with a swim in the lake next time!

    another side say no trespassing
    Reach dead end path become lake. cant go over the beach.

  • We traveled to Grayland, WA to upgrade their wiring and bridge infrastructure.

    We stayed for two nights at Breakwater Resort, and it was truly an enjoyable experience filled with both relaxation and a touch of adventure. During our visit, I also had the opportunity to work for the resort by assisting them with some essential networking upgrades. My main task was to install their bridge access point to improve wireless connectivity around the property. In addition, I needed to replace the existing indoor network cable with a more durable outdoor Cat 6 cable, making the network more reliable and resistant to the elements.


    On the second day, things took an unexpected turn. The newly installed access point stopped working suddenly, which led to a troubleshooting session. After careful inspection, I discovered that our NanoStation device had suffered significant damage—the Ethernet port had overheated and actually melted, rendering it unusable. Clearly, the device had been fried, possibly due to an electrical surge or unsuitable cable infrastructure.


    To resolve the issue, we promptly swapped out the damaged NanoStation with a brand-new unit. However, in the process, I realized another problem. The existing Cat 5e cable that ran outdoors wasn’t compatible with Power over Ethernet (POE) requirements, meaning it couldn’t reliably supply power to the new access point devices. Recognizing the importance of proper cabling for outdoor networking hardware, I decided to upgrade the setup by replacing the old wire with a robust outdoor-grade cable specifically designed for POE support and harsh weather conditions. This ensured that the new access point would function optimally and remain protected against similar issues in the future.

    Overall, my time at Breakwater Resort was a rewarding blend of leisure and technical problem-solving, leaving a positive impact on both the guest experience and the resort’s IT infrastructure.

    Starlink from hotel to cottage half miles and work great.

    Next, I installed an outdoor WiFi 6 access point, which provides extensive coverage across our parking lot. The connection speed is now nearly on par with our Starlink service.

    First, I rewired everything and labeled it neatly. Let’s take a look at the original setup before the improvements.

    After I complete the rewiring and accurately label all components,

  • How to Set a Static IPv6 Address on Ubuntu 22.04 LTS Using Netplan


    Setting a static IPv6 address on Ubuntu 22.04 LTS helps your server stay reachable. Netplan is the tool you will use. Follow these easy steps.


    Why Use a Static IPv6 Address?

    A static IPv6 address does not change.
    It helps your server always have the same address.
    This is important for web servers, email servers, and remote access.


    What You Need

    • Ubuntu 22.04 LTS installed
    • IPv6 working on your network
    • Your IPv6 address, prefix (like /64), gateway, and DNS servers
    • Root or sudo access

    Step 1: Find Your Network Interface

    Open a terminal.
    Type:

    ip a
    

    Look for your network name, like ens33, eth0, or enp0s3.


    Step 2: Backup Your Netplan File

    Before making changes, make a backup.
    Type:

    sudo cp /etc/netplan/00-installer-config.yaml /etc/netplan/00-installer-config.yaml.bak
    

    Step 3: Edit the Netplan File

    Open the file to edit:

    sudo nano /etc/netplan/00-installer-config.yaml
    

    Add or update your IPv6 settings.
    Change the example values to match your info.

    network:
      version: 2
      ethernets:
        ens33:
          dhcp6: no
          addresses:
            - 2001:db8::1001/64
          gateway6: 2001:db8::1
          nameservers:
            addresses:
              - 2001:4860:4860::8888
              - 2001:4860:4860::8844
    

    Tip: Make sure the spaces match the example. YAML needs correct indentation.


    Step 4: Test and Apply

    Test your new setup:

    sudo netplan try
    

    If it works, apply the change:

    sudo netplan apply
    

    Step 5: Check Your Address and Connection

    Check your address:

    ip -6 addr show
    

    Test the connection:

    ping6 google.com
    

    Tips for Success

    • Always backup before making changes.
    • Write down your settings.
    • Have console access in case you get locked out.

    Now your server uses a static IPv6 address on Ubuntu 22.04 LTS with Netplan.
    Your server will have a reliable address for all your needs.

Secret Link