ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Categories
    3. IT Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • JaredBuschJ

      Need live network monitoring

      Watching Ignoring Scheduled Pinned Locked Moved Solved edgemax edgeos statistics monitoring
      17
      0 Votes
      17 Posts
      961 Views
      dbeatoD

      Found this and might be helpful to this traffic issue. In a Windows Computer you could use Glasswire on a wim to find out what traffic is going out of it:
      https://github.com/zerotier/ZeroTierOne/issues/1174
      https://github.com/zerotier/ZeroTierOne/issues/1018
      https://github.com/zerotier/ZeroTierOne/issues/867

    • B

      Fanvil transfer to voicemail using dsskey ...

      Watching Ignoring Scheduled Pinned Locked Moved Solved fanvil
      8
      1 Votes
      8 Posts
      1k Views
      JaredBuschJ

      This clear enough?
      F19CD035-29E9-4C9E-9063-AA83129F6B88.jpeg

    • JaredBuschJ

      ZeroTier 1.6.0 spiking bandwidth

      Watching Ignoring Scheduled Pinned Locked Moved Solved zerotier zerotier 1.6.0 windows network
      4
      0 Votes
      4 Posts
      539 Views
      JaredBuschJ

      For some reason, it would not downgrade like normal within chocolatey

      So I did an uninstall, reinstall of version 1.4.6, then pinned version 1.4.6 so it will not upgrade when the daily task fires that uprgades all packages.

      choco uninstall zerotier-one -y choco install zerotier-one --version=1.4.6 -y choco pin add -n=zerotier-one

      Of course I did it all via ScreenConnect.

      711f661b-2f41-4bd0-a83b-a297a2d09376-image.png
      58f00374-e5c1-4d6f-8de9-f88b95a662d8-image.png

      This is what a pin does:
      2a64dc4a-d595-4f68-ac76-2faa3f55d77b-image.png

    • DustinB3403D

      Trying to get metrics comparing two APs Cisco and Ubiquiti

      Watching Ignoring Scheduled Pinned Locked Moved ubiquiti cisco meraki meraki wireless comparison
      17
      0 Votes
      17 Posts
      2k Views
      DashrenderD

      @DustinB3403 said in Trying to get metrics comparing two APs Cisco and Ubiquiti:

      @Dashrender said in Trying to get metrics comparing two APs Cisco and Ubiquiti:

      ustomer wouldn't approve adding cabling to run extra APs.

      How many do they have today?

      That's kind of what I'm thinking of recommending, but would want to ensure that we're list apples to apples and not against grapefuites (if you get my point).

      well sure - so look at what the current APs support, then find something that does that or better for the new APs, You might have to play with power settings to keep things from overlapping to much,...

    • D

      Switch to fiber or stay with coax?

      Watching Ignoring Scheduled Pinned Locked Moved
      18
      0 Votes
      18 Posts
      968 Views
      dafyreD

      @Dragon3303 said in Switch to fiber or stay with coax?:

      We haven't had any big issues with service, speed, etc. to speak of. Potentially looking at switching to a 30x30

      My takeaway from this is that you'd be paying more to go slower. If you're not having any real issues, why pay more to go slower?

      @Dragon3303 said in Switch to fiber or stay with coax?:

      I'm sure some of our remote folks may see some better file transfer speeds but I'm not sure how much of a difference that will make overall going from 12 mb to 30 mb.

      For some folks, it will be noticeable, and others, not so much. It will largely depend on what kind of internet connection your remote users have outside of the office.

      Have you considered talking to your current ISP to see if they can provide more upload speed?

    • NashBrydgesN

      Pick Your Brains - What would you do - Unifi Video Deprecated

      Watching Ignoring Scheduled Pinned Locked Moved unifi video unvr
      12
      1 Votes
      12 Posts
      1k Views
      brandon220B

      Blue Iris is great. It is too bad it only runs on Windows. We have deployed in on mini PCs with great success.

    • scottalanmillerS

      Anyone Know a Good GUI for HAProxy?

      Watching Ignoring Scheduled Pinned Locked Moved haproxy
      28
      0 Votes
      28 Posts
      21k Views
      stacksofplatesS

      @thejb said in Anyone Know a Good GUI for HAProxy?:

      @scottalanmiller

      $1200 does seem crazy, but it is an ADC not just a GUI for HAProxy.

      Some features include an Accelerator built upon nginx, WAF for security, GSLB and high availability.

      For more information on the features - https://www.snapt.net/platforms/aria-adc/features

      Is there a reason that you don't natively support deployments to things like k8s? It seems crazy this day and age to not have first class support for that seeing as almost everything will be there. Esp in the enterprise space where this has to be marketed for.

    • scottalanmillerS

      Deploying NodeBB 1.14 on CentOS 8 with MongoDB 4.2

      Watching Ignoring Scheduled Pinned Locked Moved nodebb nodebb 1.14 centos linux centos 8 mongodb mongodb 4.2
      7
      0 Votes
      7 Posts
      6k Views
      JaredBuschJ

      @scottalanmiller said in Deploying NodeBB 1.14 on CentOS 8 with MongoDB 4.2:

      By default, NodeBB uses the REDIS NoSQL database,

      By default, in 1.15.x it uses Mongo

      I'm pretty sure it did in the last version I installed also. But that was months ago and I do not recall clearly.

    • JaredBuschJ

      Redirecting feedback from Linux command

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved linux bash scripting redirect
      7
      0 Votes
      7 Posts
      946 Views
      1

      @JaredBusch said in Redirecting feedback from Linux command:

      @Pete-S Pretty much what I do not want is the status bar from these two commands.

      fwconsole ma upgradeall

      fwconsole chown

      Well, use grep to match for the progress bar then.

      First output stderr to a file and look in the file.

      I don't know how the progress bar looks when it's output as a stream of characters.
      I'm guessing every update is something like

      3076094/3076094 [===========>-------------] 60%<CR>

      In that case grep for every line that doesn't contain a [ followed by a number of =, > or - and finally a ].

      So something like:

      grep -v '\[[=->]+\\]'

      Or maybe even better:

      grep -v '\[[=->]{28}\\]'

      Above assuming there are always 28 characters inside the brackets in the progress bar.

      PS.
      Funny thing but there seems to be a bug in the forum software.
      I had to use an extra backslash to get the above regex look right \[[=->]+\\\] instead of \[[=->]+\\]
      They look right in the preview though.

    • JaredBuschJ

      How do I move contacts between accounts on iOS

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved ios contacts exchange icloud
      3
      2 Votes
      3 Posts
      2k Views
      JaredBuschJ

      @black3dynamite that will work. I'll report back on Monday when I get the user on the phone.

    • 1

      Ticket versus Projects

      Watching Ignoring Scheduled Pinned Locked Moved ticketing projects
      25
      0 Votes
      25 Posts
      2k Views
      1

      @scottalanmiller said in Ticket versus Projects:

      @Pete-S said in Ticket versus Projects:

      Looking at Zoho One we're actually thinking about going all-in for real. Zoho One is a subscription that gives you access to almost everything Zoho has - Mail, Workdrive, CRM, Desk, Projects, etc, etc. It's $30 per month for every employee.

      We've looked at it, but the price just doesn't work for us. Even if we bought every tool that every person would ever use, we don't have a single user who comes up to the $30/mo price. Most are in the $3 range, so the gap is huge.

      Our core users are mail, workdrive, and connect. Beyond that, everything is unique to a role.

      Yes, I think it hard to come up in price for the common cheaper services and only makes sense when you have a high percentage of your workforce on one of the more costly things like Zoho Desk or Zoho CRM.

      The enterprise edition of Zoho CRM for instance is $35 per month. Enterprise edition of Zoho Desk is also the same price.

    • DustinB3403D

      Recursively look in multiple folders and find files with the same name ignoring the extension

      Watching Ignoring Scheduled Pinned Locked Moved file sorting linux command line
      10
      0 Votes
      10 Posts
      708 Views
      EddieJenningsE

      Tweaked a bit to provide an output file.

      https://gitlab.com/EddieJennings/bash-general/-/blob/master/find_files_sort_by_filename.sh

    • gjacobseG

      ZOOM alternative

      Watching Ignoring Scheduled Pinned Locked Moved
      13
      1 Votes
      13 Posts
      399 Views
      scottalanmillerS

      @jt1001001 said in ZOOM alternative:

      I have our club board meetings on meet.jit.si no cost no time limit no member limit and no client required which is great for the less literate crowd

      I use Jitsi for everything. It's great.

    • AdamFA

      Calendar sharing - Office365 - External users

      Watching Ignoring Scheduled Pinned Locked Moved office365
      18
      0 Votes
      18 Posts
      4k Views
      dbeatoD

      So Free/Busy would work on a federated level and you can actually use the schedule assistant from another Office 365 account to see that however that is all you will get. That said the user will need to send an invite regardless. There is a Uservoice on this
      https://office365.uservoice.com/forums/273493-office-365-admin/suggestions/36486493-allow-calendar-updates-for-external-users

      There are other options like setting up a calendar in Sharepoint and external users can do that.
      https://support.microsoft.com/en-us/office/create-a-team-site-in-sharepoint-ef10c1e7-15f3-42a3-98aa-b5972711777d?ui=en-us&rs=en-us&ad=us

      You can also use this enterprise app in Office 365 as well
      https://techcommunity.microsoft.com/t5/microsoft-bookings-blog/you-can-now-do-more-with-microsoft-bookings/ba-p/298461

    • 1

      SMS-Magic or Clickatell?

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      1 Votes
      3 Posts
      229 Views
      1

      @JaredBusch said in SMS-Magic or Clickatell?:

      I've heard of Clickatell but not SMS-Magic.

      I've not researched them at all.

      Thanks, we've signed up for Clickatell now so we'll see how it goes.

    • JaredBuschJ

      Vultr Firewall added Cloudflare

      Watching Ignoring Scheduled Pinned Locked Moved vultr firewall cloudflare
      31
      4 Votes
      31 Posts
      5k Views
      DashrenderD

      @Mario-Jakovina said in Vultr Firewall added Cloudflare:

      As I said - we do have FQDN.
      I was just suprised when @Dashrender said they are free from Cloudflare

      I misspoke, I never meant that registered domains themselves were free. What I meant was free was DNS hosting and base level proxying from CF.

    • A

      Fiber Optic LC adaptor

      Watching Ignoring Scheduled Pinned Locked Moved
      7
      0 Votes
      7 Posts
      514 Views
      A

      @brandon220 said in Fiber Optic LC adaptor:

      https://www.fs.com/products/82730.html is all you need.

      thank you very much, very helpful post.

    • DustinB3403D

      XOCE and Let's Encrypt

      Watching Ignoring Scheduled Pinned Locked Moved xen orchestra community certbot lets encrypt ssl https
      10
      0 Votes
      10 Posts
      2k Views
      DustinB3403D

      And this person has a full guide https://xcp-ng.org/forum/topic/3775/xen-orchestra-from-source-with-let-s-encrypt-certificates

    • scottalanmillerS

      Do You Look Like a Real Business To Your Customers?

      Watching Ignoring Scheduled Pinned Locked Moved
      8
      0 Votes
      8 Posts
      314 Views
      DustinB3403D

      @EddieJennings said in Do You Look Like a Real Business To Your Customers?:

      @DustinB3403 said in Do You Look Like a Real Business To Your Customers?:

      @EddieJennings said in Do You Look Like a Real Business To Your Customers?:

      @Pete-S said in Do You Look Like a Real Business To Your Customers?:

      A real business also have procedures for almost everything.

      This cannot be stated enough.

      hahahahaahahahaha

      Glad I could entertain you.

      I needed a laugh, especially before my evening went to shit yesterday.

    • 1

      How much RAM for this VM?

      Watching Ignoring Scheduled Pinned Locked Moved windows server ram vmware vm
      10
      0 Votes
      10 Posts
      1k Views
      T

      @Dashrender said in How much RAM for this VM?:

      why does the consumed have those dips?

      I'd say this was invoked by the apps running on it. This VM is used for analytics and reporting, it's got Visual Studio, Power Bi and SQL server running on it. The vendor must've been doing some shit on it.

    • 1
    • 2
    • 58
    • 59
    • 60
    • 61
    • 62
    • 697
    • 698
    • 60 / 698