ka9q

About

Username
ka9q
Joined
Visits
86
Last Active
Roles
Member
Points
2
  • Power line noise ?

    I'm listening to your SDR now but I don't hear it, probably because it's too late (0108 UTC). In fact you have a remarkably quiet QTH compared to mine (San Diego CA DM12ju). But your description sounds remarkably like one source of QRM I'm working on here: clearly power line related, very unstable lines from a switching power supply, present after dark until the middle of the night, worst on the 49m and 40m bands (receiving with a G5RV).

    The switching frequency appears around 20 kHz, i.e., the lines blanket the spectrum every 20 kHz. My hunch is a compact fluorescent bulb, as their switch mode ballasts produce 20 kHz AC where CFLs are most efficient.

    As for the noise coming down your power line, yes, this is exactly what I'd expect. Electronic noise below about mid HF is generally conducted out through the power line since the device itself is too small to be an efficient radiator.

    Have you offered to buy your neighbor a new, clean light bulb? That's what I plan to do once I find out who to offer it to.

    njc
  • Problem with massive RFI after changing router

    I concur with the suggestion to try another power supply. They can vary enormously in noise generation.

    I've been switching to Cat 7 ethernet cables where possible. Each pair is shielded, and the entire cable has an end-to-end shield that connects the body of the connectors. This usually helps, sometimes a lot, but connecting the two device grounds can sometimes complete a ground loop that actually makes problems worse.

    I've also switched to fiber for all inter-switch connections. This gets rid of the longer copper runs and can be a major win. Unfortunately fiber is rarely if ever supported by end devices even though it's getting fairly cheap.
    johnk5mo
  • DANGER: DO NOT do a manual Debian/Linux upgrade to your Kiwi! (update: but it's okay now)

    Are you tracking upstream Debian security updates? I consider frequent updates critical to system security, so if we're not supposed to do our own Debian updates then you'll have to take that over.
    HB9TMCdl7awl
  • DANGER: DO NOT do a manual Debian/Linux upgrade to your Kiwi! (update: but it's okay now)

    Are you tracking upstream Debian security updates? I consider frequent updates critical to system security, so if we're not supposed to do our own Debian updates then you'll have to take that over.
    HB9TMCdl7awl
  • v1.354 SECURITY IMPROVEMENTS: Debian root password no longer unset/blank

    I recommend turning off password authentication in SSH if at all possible. In my opinion, this is the single most important thing you can do to secure ANY UNIX-like system on the Internet. Automated password-guessing attacks on SSH servers have been going on for years, and this stops them cold.

    To turn off password authentication, go into /etc/ssh/sshd_config, find the lines that say

    # Change to no to disable tunnelled clear text passwords
    #PasswordAuthentication yes

    and append
    PasswordAuthentication no

    You MUST have already generated and set up RSA authentication for every login you intend to access with SSH. The RSA public key(s) go(es) into the file ~/.ssh/authorized_keys. Test this before you disable password authentication.
    WA2ZKD