• How to Grow from a One Man Operation to Two

    72
    0 Votes
    72 Posts
    8k Views
    DashrenderD

    @scottalanmiller said in How to Grow from a One Man Operation to Two:

    @dashrender said in How to Grow from a One Man Operation to Two:

    @storageninja said in How to Grow from a One Man Operation to Two:

    @dashrender said in How to Grow from a One Man Operation to Two:

    I agree. I've worked for several smaller companies, and they all had strick reimbursement policies. i.e. I can't have a rental car for SW next week - I have to use the shuttle. Meals capped at $35/day, etc.

    I thought about staying up at the Arboretum and renting a car, but I hate parking in Austin. Instead, I'm just going to bus in (Vonlane drops you off south of the river for the same price as a southwest airlines flight) and bum rides off the local SE's and Alliance guys if I need to go to RoundRock or something. Uber/Lyft is far cheaper than renting a car and parking it for $30 a day at a hotel.

    Staying at the Courtyard near the convention center (was like 300 a night).

    That was just an example. I don't care about having a car, I'll walk like I have the last two times I was there. I took a shuttle or perhaps even the bus from the airport to the convention center.
    Since traveling in EU, I don't mind taking the bus anymore. In general it seems safe and fairly easy.

    As for the hotel - I got an AirBnB for like $600 for 3 nights.

    I often do that when traveling, just skip the whole car deal altogether.

    Yep, super easy. If I wanted to wake up an hour earlier, I could have caught the bus back to the airport for $1.25... instead I split an Uber to the airport for $30 total. The cost of convenience.

  • Wazuh and the ELK Stack - Check My Logic, Please

    3
    0 Votes
    3 Posts
    1k Views
    NetworkNerdN

    After asking the Wazuh employee I had been speaking to about Kibana 5.6.3, the GitHub repo was updated to include it.

  • Distro Selection for OSSEC

    14
    1 Votes
    14 Posts
    3k Views
    NetworkNerdN

    We decided to stick with Wazuh. It runs on CentOS 7 and has a shiny OVA we used to deploy it. So for the purposes of this thread, we have our distro selected. Thanks everyone for the help.

  • What do you use for a ticketing/inventory system

    5
    1 Votes
    5 Posts
    655 Views
    black3dynamiteB

    I've used GLPI when I needed a Ticket/Knowledge Base/Inventory system.

    GLPI
    http://glpi-project.org/?lang=en

    There's also a install guide on MangoLassi
    https://mangolassi.it/topic/14780/install-glpi-on-fedora-26-minimal/

    GLPI Demo
    http://demo.glpi-project.org/

  • 7 Votes
    1 Posts
    958 Views
    No one has replied
  • Windows 10 1709 VLSC ISO the same for all version

    5
    1 Votes
    5 Posts
    2k Views
    DashrenderD

    @reid-cooper said in Windows 10 1709 VLSC ISO the same for all version:

    @dashrender said in Windows 10 1709 VLSC ISO the same for all version:

    @travisdh1 said in Windows 10 1709 VLSC ISO the same for all version:

    Hasn't it always been like that?

    For those that don't know, even the home version has a file you can remove from the installer and it'll do any version. Once installation is complete, register it with the proper key and you're good to go.

    Maybe with Windows 10, but definitely not with Windows 7 and previous versions. There was no home version of VLSC. I suppose there were files you could change, but damn.. now you're screwing with the HASH of the ISO.. no thanks.

    But I think his point is that the VLSC version has long been a single ISO for many versions.

    OIC, I hadn't heard this before... so I reported it..

  • 2 Votes
    1 Posts
    753 Views
    No one has replied
  • Powershell issues with splitting or trimming data in a $string

    7
    0 Votes
    7 Posts
    1k Views
    computerchipC

    @dafyre said in Powershell issues with splitting or trimming data in a $string:

    @computerchip said in Powershell issues with splitting or trimming data in a $string:
    Change this: $data[0] | Out-File -filepath C:\temp\chip\whois_data.csv -append

    to

    $data=$data -join "," $intLastChar=$data.indexof("DNSSEC")+2 $data=$data.substring(0,$intLastChar)

    That converts $data to a string (separated by comma), finds "DNSSEC" and adds two to it (to remove the leading comma), and then tosses out everything extra.

    I believe that's going to work, testing more now. Thanks!

  • 0 Votes
    29 Posts
    5k Views
    scottalanmillerS

    @stacksofplates said in Newb question - Running a script from the root directory:

    @dustinb3403 said in Newb question - Running a script from the root directory:

    @stacksofplates said in Newb question - Running a script from the root directory:

    @dustinb3403 said in Newb question - Running a script from the root directory:

    @stacksofplates said in Newb question - Running a script from the root directory:

    @dustinb3403 said in Newb question - Running a script from the root directory:

    @stacksofplates said in Newb question - Running a script from the root directory:

    @dustinb3403 said in Newb question - Running a script from the root directory:

    @scottalanmiller said in Newb question - Running a script from the root directory:

    @dustinb3403 said in Newb question - Running a script from the root directory:

    @stacksofplates said in Newb question - Running a script from the root directory:

    @dustinb3403 said in Newb question - Running a script from the root directory:

    @danp said in Newb question - Running a script from the root directory:

    Is the directory in your path? What do you get from echo $PATH?

    echo $PATH
    /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/root/opt/scripts/:/root/opt/scripts

    I've added it (twice).

    Well first off you had /root/opt/scripts not /opt/scripts. Second you either have to log out and back in or tell your user to use the new path with something like

    source ~/.bash_profile

    I used ````~/opt/scripts``` initially, as I wasn't aware of just adding my scripts into one of the existing locations. (everything said just add a new directory).

    By simply moving the script into an already existing path, I am able to update with just "script.sh".

    When you are root and your home is /root and you put ~/opt/scripts that is /root/opt/scripts.

    Remember that ~ is a shortcut to your home directory, which is /root

    So by adding ```/opt/scripts/```` this would've worked, but would've added complexity for no reason.

    No that still isn’t a default location. In the OP you said you put the script in /opt/scripts. Where did you actually put it?

    Originally I created the directory /opt/scripts and put the script in there so the Directory looks like

    /opt/scripts/script.sh

    I went back and change the script location to be in /usr/local/bin

    So in /usr/local/bin I now have script.sh

    This now works without issue, and /opt/scripts no longer exists.

    Ok ya that’s where the problem was. /opt/scripts is different than /root/opt/scripts. If you would have had that in your .bashrc or .bash_profile (or whichever shellconfigure you’re using) it would have worked. But you still have to let the user know of the PATH change.

    I'm the user in this case, but I never really create / save my own scripts. I just got tired of running a set of commands, every other day.

    Thus the need to figure out how I could run the script, without having to jump into the exact directory from which the script was saved.

    I mean you have to let the user you are logged in as Know if the change. Either by logging out and back in or by temporarily sourcing the config.

    I've logged out, what do you mean "sourcing the config" ?

    If you change your PATH while you’re logged on the user account doesn’t know of that change. You have to either log out and log in again or temporarily do something like

    source ~/.bashrc

    Or the non-aliased version...

    . ~/.bashrc
  • WPA2 Hacked

    56
    6 Votes
    56 Posts
    6k Views
    JaredBuschJ

    @dustinb3403 said in WPA2 Hacked:

    @hobbit666 said in WPA2 Hacked:

    @mike-davis said in WPA2 Hacked:

    My controller now will let me upgrade some APs, but not others. For the client below, the APs are on the same firmware, but one is showing the upgrade available and the other not. I'll keep watching it as the day goes on.

    0_1508329290610_APupgrade.png

    Did you download the Firmware to the controller or did it just appear by it self?

    The controller has to be upgraded through the normal upgrade process.

    No it does not. there is a button specifically to load out of band firmware.

  • Equifax Again

    15
    3 Votes
    15 Posts
    2k Views
    DustinB3403D

    @aaronstuder I watched that video some time ago, such a good channel.

  • Ubuntu/shred?

    39
    1 Votes
    39 Posts
    3k Views
    IRJI

    @jimmy9008 said in Ubuntu/shred?:

    @gjacobse said in Ubuntu/shred?:

    Nothing wrong with doing a multi pass as well... I have heard of people going so far as to create a 'dumb text' file of junk text and copying it to fill the drive, then doing the DBAN. Also - if it is a physical ARRAY - by killing it, you add another layer of obscurity...

    I generally have just pulled drives and kept them. They are cheap and easy enough to replace, and can be found new, refurb or used...

    We're donating with the drives, so will be wiping them to a reasonable standard.
    Just trying to find out id one pass of 0's is actually a reasonable standard....

    No it's not. DoD wiping is done with 7 passes. This is a very old standard and has been around a long time.

  • Hyper-V Failover Cluster FAILURE(S)

    140
    0 Votes
    140 Posts
    17k Views
    Reid CooperR

    @dashrender said in Hyper-V Failover Cluster FAILURE(S):

    @tim_g said in Hyper-V Failover Cluster FAILURE(S):

    @kyle said in Hyper-V Failover Cluster FAILURE(S):

    @dashrender said in Hyper-V Failover Cluster FAILURE(S):

    The logs say the switches aren’t saturated, but I wonder is a network broadcast issues can’t be an issue here in the new network size.

    I'm going to have to verify the network settings are correct tomorrow again since the 5 NICs associated with the nodes are all over the place I'm going to guess it has something to do with that.

    They said they had this exact same issue a few months ago but the logs do not go back that far so I cannot compare the events. But having the cluster fail twice in 2 days isn't sitting right with me since it started occurring just days after switching IP ranges.

    I've dumped all the logs and documented everything I have found that look out of place.

    Isn't the SAN network isolated both physically and logically from everything else?

    Nope he said they are not.

    That's not good. So it isn't really a SAN, just a normal network with SAN traffic dumped onto it?

  • Install permissions

    8
    0 Votes
    8 Posts
    689 Views
    Reid CooperR

    Remember that if they can install things without any prompting, it means that malware will install without any prompting either. And that malware will have admin rights, not user rights.

  • Helpdesk SLAs

    20
    0 Votes
    20 Posts
    2k Views
    Reid CooperR

    @kyle said in Helpdesk SLAs:

    @travisdh1 said in Helpdesk SLAs:

    @kyle said in Helpdesk SLAs:

    @scottalanmiller said in Helpdesk SLAs:

    @ambarishrh said in Helpdesk SLAs:

    @scottalanmiller said in Helpdesk SLAs:

    @ambarishrh said in Helpdesk SLAs:

    we are a very small team now, 250+ users 3 techs. Screen connect plays a bigger role here! 🙂

    Idea is to set an SLA and review this on regular basis, find out the gap and either increase headcount or if no budget for additional headcount, then increase the SLA.

    With the current tech headcount, the SLA that we are thinking are:

    0_1507276456209_e6fcd8e9-e100-4a64-a977-1febb6c25811-image.png
    *Resolution includes temporary fix or work-around solution.

    New hardware requests usually take 4-6 weeks to deliver from HP (we can keep stock of 5 but the user requests are quite a lot this year and next year as well, but no finance approval to keep more than 5 as of now), so agreed with HR on this timeline.

    An SLA means that there is a punishment to you if you do not meet the requirements. What happens to the IT team if they cannot resolve these issues in the SLA time? How do you determine what is within the scope of what IT can have fixed and not?

    The purpose for this is also to evaluate the existing issues, see if our small team can cater the requirements and based on the results we either get more people or increase the sla. As of now this will be visible only to IT team and based on our analysis we will release to users on a later stage with SLA that we can achieve

    SLAs are not a good tool for that. Just use good reporting for that. SLAs are adversarial, not something you ever want to use internally.

    Yet they are integrated in several helpdesk options.

    Yes, because help desk software is a generic thing that can be used with the public, internally, or a combination of both. Just because a feature is already integrated doesn't mean it's a good option to use. I think of something like an SLA for leased lines like T1/T3.

    I know. I just wish they were more granular in features as there are some hard coded features the are unnecessary and just clutter the classification of tickets. We currently use ManageEngine Service Desk and SLA's are built in and part of the reporting metrics despite the fact we don't use them.

    I generally prefer light, simple helpdesks. Unless you are a huge organization, most of that extra stuff is just wasted and in the way.

  • Hyper V replica VS DFS

    17
    0 Votes
    17 Posts
    2k Views
    J

    @tim_g said in Hyper V replica VS DFS:

    @jimmy9008 said in Hyper V replica VS DFS:

    @tim_g said in Hyper V replica VS DFS:

    @jimmy9008 said in Hyper V replica VS DFS:

    Also remember, replica/DFS is not a backup. This is useful if you are using it for some sort of DR, but its not a backup (just saying in case this was for a backup).

    It can be used as hardware redundancy and to speed up file access in remote locations.

    Yes, it has many uses. But my point was its not a backup. So, wanted to make sure this wasn't in place for a backup.

    Good call! He did mention a secondary offsite server... but never mentioned the reason. Could be for backup?

    My thoughts exactly. Hence saying what I said 😉

    If using replica from A -> B, and if they think its a backup.... just wait for the VM on A to get ransomware... and bad times as yep - B also has the locked files.

    Hyper-V Replica is not a backup. Its a DR type thing. DFS is not a backup, its a file distribution system.

  • Veritas NetBackup Enterprise Backup Installation

    3
    1 Votes
    3 Posts
    551 Views
    scottalanmillerS

    @ghani said in Veritas NetBackup Enterprise Backup Installation:

    Dear Team,

    I am a beginner to vertias enterprise backup. I need to know how to the implementation of new Vertias enterprise backup new environments. My customers have one NetBackup Enterprise license , 1TL4000 Tape library with 4LTO7FC drivers. kindly provide your suggestion/support to quick start NetBackup Enterprise backup.

    My point of view,
    a) Need to installing Netbackup Enterprise backup software on RHEL 7.0 OS Server.
    b) Need to installed Netbackup Media Server software on RHEL 7.0 OS server with connected Tape Library.
    c) Need to installed Agents on Veritas backup clients.

    Above step process is correct or wrong ? kindly provide your support.

    Thanks
    Ghani

    Sounds like the correct process. It's been quite a while since I did a greenfield NetBackup deployment and a lot may have changed. It was Solaris when I last did it, but I used to work for Veritas doing this in the field.

  • Software and Hardware Raid

    44
    0 Votes
    44 Posts
    3k Views
    travisdh1T

    @jmoore said in Software and Hardware Raid:

    For myself there is value in me running a good Raid system at home. Who couldn't use a little better performance and reliability? I will do Raid 10. The most important thing to me is the learning experience and I like knowing best practices if at all possible. However, there are still things to consider. Remember everything I do at home is to help me learn something else in case I ever need it and I just l lots of vm's in a Raid 10 system?

    That's actually great for learning at home. Nothing is handed to you on a silver platter ready to go. That said, getting KVM and software RAID running is straight forward (notice I didn't say easy.)

  • Any reason to avoid /16 in 2017?

    23
    1 Votes
    23 Posts
    4k Views
    DashrenderD

    @kyle said in Any reason to avoid /16 in 2017?:

    @scottalanmiller said in Any reason to avoid /16 in 2017?:

    @kyle said in Any reason to avoid /16 in 2017?:

    The employer I just went to work for was convinced to go from a /24 to a /16 because they were told this was necessary to fix the issues with the VLAN's. The turn up of this was on my 3rd day on the job so I had no idea when I signed on as to why they were making the change. The company has 14 locations on an MPLS but the IP addressing schema is all over the board.

    LMAO.

    I'm telling you. The "MSP" is like dealing with psychopathic monkey with alzheimer's.

    lol damn.

  • Preferred WAF for your website

    6
    0 Votes
    6 Posts
    853 Views
    wrx7mW

    Cloudflare here. I recently enabled DNSSEC. Super easy.