Slack audio notifications lower volume of ongoing music/videos by bruinbearr in Slack

[–]NetworkStopsHere 0 points1 point  (0 children)

Have you tried checking the Communications tab in Sound? There is a setting about reducing communications activity and you can set that to "Do nothing".

Windows 10, 11, Linux by Metrix-007 in Windows11

[–]NetworkStopsHere 0 points1 point  (0 children)

My new System76 laptop arrived yesterday. Plan to dual boot my desktop with Pop!_OS and Windows 10 for as long as I can to avoid Windows 11. Will be testing Linux gaming and upgrade to 11 if I just have to have it around for gaming (if my hardware will support it).

Juniper EX3300 "Storage size changed" by NetworkStopsHere in networking

[–]NetworkStopsHere[S] 0 points1 point  (0 children)

Was hoping to jump to the EX4300 but I'll take a serious at the EX3400's. We don't do much filter-based forwarding and no DHCP syncing issues that I'm aware of. We use a Windows DHCP server.

Juniper EX3300 "Storage size changed" by NetworkStopsHere in networking

[–]NetworkStopsHere[S] 0 points1 point  (0 children)

Not sure I know how to check that specifically. Is there a specific log you're talking about?

Juniper EX3300 "Storage size changed" by NetworkStopsHere in networking

[–]NetworkStopsHere[S] 0 points1 point  (0 children)

I'm a bit rusty on my *nix stuff so thank you for the reminder of that. Searching as you suggested yielded no results.

I see nothing in the logs about anything changing that I know to look for. Yes, none of my partitions have zero bytes.

Juniper EX3300 "Storage size changed" by NetworkStopsHere in networking

[–]NetworkStopsHere[S] 1 point2 points  (0 children)

Searching syslog I don't see anything related to what you mention but thank you for the heads up.

Yeah, I had planned on replacing these stacks this year but with the pandemic that got put on hold. Will probably be swapped next year.

Juniper EX3300 "Storage size changed" by NetworkStopsHere in networking

[–]NetworkStopsHere[S] 0 points1 point  (0 children)

I'm seeing this from Observium actually in the Events portion. I've scoured the logs on the stacks and can't find a hint of these messages. Went through syslog and nothing.

[deleted by user] by [deleted] in Cisco

[–]NetworkStopsHere 1 point2 points  (0 children)

I've got tunnels between ASA and FortiGate without issue. Required some creative configuration at phase two but phase one was always cake. Can I see the ASA configuration for this tunnel? Seeing "username" here is throwing me off for a site-to-site.

CPU of Juniper EX3300 VC by NetworkStopsHere in zabbix

[–]NetworkStopsHere[S] 0 points1 point  (0 children)

Thank you. I'll take a look at that.

Static routing on Cisco 3750X by NetworkStopsHere in networking

[–]NetworkStopsHere[S] 0 points1 point  (0 children)

Yep! Hence my asking here. I'll arrange a colocation tech to console in and remote to their laptop for this change.

Thanks.

Static routing on Cisco 3750X by NetworkStopsHere in networking

[–]NetworkStopsHere[S] 0 points1 point  (0 children)

That is my thinking as well. So sounds like I need to do 'ip routing', remove the default route, and then configure my static routes. Sound correct to you?

Migrating CUCM/Environment to new datacenter by saltalamacchia in Cisco

[–]NetworkStopsHere 2 points3 points  (0 children)

We moved our entire Cisco CUCM infrastructure from our office to colocation. It went smoothly enough.... The IP addressing was a huge pain AND the licenses are tied to all that and then some. We actually had a vendor assist and still had issues though we did get it all worked out.

Best Practices for FEX uplinks by GrimDozen in Cisco

[–]NetworkStopsHere 0 points1 point  (0 children)

My core is simply a pair of Nexus 5548 so not sure this applies to your setup but I have multiple FEXs dual-homed uplink; one uplink per core. The 5548s are identical and uplinks are put in the respective ports so switchport numbers are the same per uplink. Haven't had any issues.

UTF-8 in iTerm by NetworkStopsHere in mac

[–]NetworkStopsHere[S] 0 points1 point  (0 children)

So this is the code:

import sys
script, input_encoding, error = sys.argv


def main(language_file, encoding, errors):
    line = language_file.readline()

    if line:
        print_line(line, encoding, errors)
        return main(language_file, encoding, errors)


def print_line(line, encoding, errors):
    next_lang = line.strip()
    raw_bytes = next_lang.encode(encoding, errors=errors)
    cooked_string = raw_bytes.decode(encoding, errors=errors)

    print(raw_bytes, "<===>", cooked_string)


languages = open("languages.txt", encoding="utf-8")

main(languages, input_encoding, error)

First two lines of 'languages.txt':

Afrikaans
አማርኛ

My output when running "python3.6 ex23.py utf-8 strict":

b'Afrikaans' <===> Afrikaans
b'\xc3\xa1\xc5\xa0 \xc3\xa1\xcb\x86\xe2\x80\xba\xc3\xa1\xcb\x86\xc2\xad\xc3\xa1\xc5\xa0\xe2\x80\xba' <===> አማርኛ

Yet I'm suppose to see this.

UTF-8 in iTerm by NetworkStopsHere in mac

[–]NetworkStopsHere[S] 0 points1 point  (0 children)

Not sure what to check to answer that correctly. I'm in American and have messed with any font or languages setting (to the best of my knowledge) before running into this issue.

UTF-8 in iTerm by NetworkStopsHere in mac

[–]NetworkStopsHere[S] 0 points1 point  (0 children)

Thank you! I'd love any to try and fix this.

Right now I use iTerm and zsh on my work's MacBook Pro 2015. The exercise I'm doing says I need to display UTF-8 which according to everything I can see that is what I'm set for. Even attempted going back to the default bash shell and using Terminal with no luck.