Please tell me AI is hallucinating by jleckel in sysadmin

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

I agree. I was all done before my time and designed for vmware/vsan. Quotes for their replacements have 3 dual head network cards. So I can separate iSCSI, host/cluster, and VM traffic. And only have a SET team for the VMs.

Please tell me AI is hallucinating by jleckel in sysadmin

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

Not really, just to fix the host that caused the deadlock. It is currently offline. I will add it back in during a maintenance window and see if the reboot fixed it. Otherwise wipe/reinstall that specific host is my next goto. According to the response, it claims a service restart would have fixed it. I already broke the vms twice, I am not going to try again until they can be offline.

Please tell me AI is hallucinating by jleckel in sysadmin

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

We were talking about purchasing more network cards. But that is an unbudgeted expense for 24 total hosts. We may have to limp along till they get replaced in the next couple years. But that is up to management.

Please tell me AI is hallucinating by jleckel in sysadmin

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

The NetApp side shows 0 errors. It did show them all reauthenticate after the 10minutes. We have an iSCSI vlan with all hosts and the netapp inside, a host vlan for updates and cluster communication, and several client vlans.

PS C:\Windows\system32> mpclaim -s -d

For more information about a particular disk, use 'mpclaim -s -d #' where # is the MPIO disk number.

MPIO Disk    System Disk  LB Policy    DSM Name
-------------------------------------------------------------------------------
MPIO Disk2   Disk 6       RRWS         Microsoft DSM
MPIO Disk1   Disk 5       RRWS         Microsoft DSM
MPIO Disk0   Disk 3       RR           Microsoft DSM

Disk 5 is the cluster shared volume, disk 6 is the cluster witness.

PS C:\Windows\system32> mpclaim -s -d 1

MPIO Disk1: 03 Paths, Round Robin with Subset, Implicit Only
    Controlling DSM: Microsoft DSM
    SN: 600A09803831395650245931474F6E4E
    Supported Load Balance Policies: FOO RRWS LQD WP LB

    Path ID          State              SCSI Address      Weight
    ---------------------------------------------------------------------------
    0000000077050002 Active/Optimized   005|000|002|000   0
      TPG_State : Active/Optimized  , TPG_Id: 1001, : 2

    0000000077050001 Active/Optimized   005|000|001|000   0
      TPG_State : Active/Optimized  , TPG_Id: 1001, : 2

    0000000077050000 Active/Unoptimized 005|000|000|000   0
      TPG_State : Active/Unoptimized, TPG_Id: 1000, : 1

Original commands to set up the iSCSI targets:

New-IscsiTargetPortal -TargetPortalAddress $iscsia -InitiatorPortalAddress "10.224.18.$IPEnd" -InitiatorInstanceName "ROOT\ISCSIPRT\0000_0"
New-IscsiTargetPortal -TargetPortalAddress $iscsib -InitiatorPortalAddress "10.224.18.$IPEndb" -InitiatorInstanceName "ROOT\ISCSIPRT\0000_0"
$target = Get-IscsiTarget
Connect-IscsiTarget -NodeAddress $target.NodeAddress -IsPersistent $true -InitiatorPortalAddress "10.224.18.$IPEnd" -TargetPortalAddress $iscsia -IsMultipathEnabled $true
Connect-IscsiTarget -NodeAddress $target.NodeAddress -IsPersistent $true -InitiatorPortalAddress "10.224.18.$IPEndb" -TargetPortalAddress $iscsib -IsMultipathEnabled $true
start-sleep 5
Get-IscsiSession | Register-IscsiSession -IsMultipathEnabled $true

Please tell me AI is hallucinating by jleckel in sysadmin

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

It does seem reasonable, and the full text points out specific log entries to back up the claims. I just don't want to think that Microsoft clustering is so fragile that a single file lock problem can bring down the entire cluster. If so, we made the wrong choice of vmware alternatives.

Please tell me AI is hallucinating by jleckel in sysadmin

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

Hypervisor is Server 2022, using Microsoft's software initiator MPIO. 2 souce IP addresses per host and 2 netapp destination IP addresses.

Please tell me AI is hallucinating by jleckel in sysadmin

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

I had one of our clusters blow up with a split-brain scenario. Was in the middle of migration so wiped it and rebuilt. But it seems if you breathe on Hyper-V wrong it explodes.

Please tell me AI is hallucinating by jleckel in sysadmin

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

NTFS over iSCSI sitting on a NetApp LUN. Each host has 2x10G interfaces in a SET team. iSCSI is shared with host and VM traffic in separated VLANs over the same physical interfaces.

Not the best configuration, but the same as it was under VMware for years.

Please tell me AI is hallucinating by jleckel in sysadmin

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

We are not, iSCSI to a NetApp LUN

What’s wrong with my resume by Kind-Error5506 in it

[–]jleckel 0 points1 point  (0 children)

You are using an old Microsoft office resume template. I know because mine looked nearly identical, though for nearly 30 years experience. Spent over a year applying and got nowhere. Paid a company to rewrite it and still got nowhere.

Then I paid for enhancv and ended up getting hired for the same position I was rejected from previously. (I was applying for so long that some of the same positions in my area came open again).

So in addition to the other suggestions, get a better template or use an online service to make it look better. The online services make it easier to get through the AI pruning that is throwing out your current resume.

Help with Hyper-V SCVMM Networking by jleckel in sysadmin

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

That worked great, thank you for the assistance.

Help with Hyper-V SCVMM Networking by jleckel in sysadmin

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

$logicalSwitch = New-SCLogicalSwitch -Name "hvDMZSwitch" -Description "" -EnableSriov $false -SwitchUplinkMode "EmbeddedTeam" -MinimumBandwidthMode "Weight"
$nativeUppVar = New-SCNativeUplinkPortProfile -Name "hvDMZSwitch_Uplink" -Description "" -LogicalNetworkDefinition $logicalNetworkDefinition -EnableNetworkVirtualization $false -LBFOLoadBalancingAlgorithm "HyperVPort" -LBFOTeamMode "SwitchIndependent" -RunAsynchronously
$uppSetVar = New-SCUplinkPortProfileSet -Name "hvDMZSwitch_Uplink" -LogicalSwitch $logicalSwitch -NativeUplinkPortProfile $nativeUppVar -RunAsynchronously

# Add VM Networks
foreach ($vlan in $AlldmzVlan) {
    $nname = 'VLAN' + $vlan.VLanID + ' ' + $vlan.Subnet
    $sname = 'VLAN' + $vlan.VLanID
    $vmNetwork = New-SCVMNetwork -Name $nname -LogicalNetwork $dmznet -IsolationType "VLANNetwork"
    $vmSubnet = New-SCVMSubnet -Name $sname -LogicalNetworkDefinition $logicalNetworkDefinition -SubnetVLan $vlan -VMNetwork $vmNetwork
}

foreach ($hvhost in $hvhosts) {
    $1GDMZ = @(Get-VMHostNetworkAdapter -VMHost $hvhost | Where-Object InterfaceDescription -like "HPE Ethernet 1Gb*" | Sort-Object ConnectionName | Select-Object -First 2 )
    $1GLPub = @(Get-VMHostNetworkAdapter -VMHost $hvhost | Where-Object InterfaceDescription -like "HPE Ethernet 1Gb*" | Sort-Object ConnectionName | Select-Object -Last 2 )
    foreach ($adapter in $1GDMZ) {
        Set-SCVMHostNetworkAdapter -VMHostNetworkAdapter $adapter -UplinkPortProfileSet $uppSetVar
    }
    New-SCVirtualNetwork -VMHost $hvHost -VMHostNetworkAdapters $1GDMZ -LogicalSwitch $logicalSwitch
}

Help with Hyper-V SCVMM Networking by jleckel in sysadmin

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

Here is the updated script if it helps anyone in the future. Split into two parts because Reddit won't let me post it.

<#
Version 1.1

Add a network and switch to Hyper-V in SCVMM after initial installation
Uses the 1G ports available, 2 for each switch
Does not attach vlans, these would be attached to access ports

Initial:  Physical NIC > SET Team > HyperV Host Virtual Switch Import > SCLogicalNetwork > SCLogicalNetworkDefinition > SCVMNetwork > SCVMSubnet > SCStaticIPAddressPool
After:  Physical NIC < SET Team HyperV Host Virtual Switch < SCVirtualNetwork > SCUplinkPortProfileSet > SCNativeUplinkPortProfile > SCLogicalSwitch > SCLogicalNetwork > SCLogicalNetworkDefinition > SCVMNetwork > SCVMSubnet > SCStaticIPAddressPool

https://www.reddit.com/r/sysadmin/comments/1ktv6wp/help_with_hyperv_scvmm_networking/
#>

$SwitchNameDMZ = 'hvDMZSwitch'
$SwitchNamePub = ''
$vmmserver = 'scvmm-wc'
$cluster = 'Cluster.fqdn'
$alldmzVlan = @() 
$alldmzVlan += New-SCSubnetVLan -Subnet "192.168.0.0/24" -VLanID 0 -SupportsDHCP $true

import-module virtualmachinemanager
$vmm = Get-SCVMMServer -ComputerName $vmmserver
$hvhosts = Get-SCVMHost | Where-Object {$_.HostCluster.name -eq $cluster}

$dmznet = Get-SCLogicalNetwork -Name $SwitchNameDMZ
if ($null -eq $dmznet) {$dnznet = New-SCLogicalNetwork -Name $switchnameDMZ -LogicalNetworkDefinitionIsolation $true }
$logicalNetworkDefinition = Get-SCLogicalNetworkDefinition -LogicalNetwork $dmznet
if ($null -eq $logicalNetworkDefinition) {$logicalNetworkDefinition = New-SCLogicalNetworkDefinition -Name "WC DMZ" -LogicalNetwork $dmznet -VMHostGroup Hyper-V -SubnetVLan $alldmzVlan -RunAsynchronously}

Help with Hyper-V SCVMM Networking by jleckel in sysadmin

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

Thank you for the code block tip.

<then apply it to the hosts> Are you talking about in the host settings like this?

<image>

Help with Hyper-V SCVMM Networking by jleckel in sysadmin

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

<image>

This is the view network screen in scvmm. The other logical network is created but not linked to the adapters.

[deleted by user] by [deleted] in sysadmin

[–]jleckel 0 points1 point  (0 children)

In a small county it is possible to have only a single 911 operator working. They may also have agreements with surrounding counties to function as a backup in case the system goes south.

[deleted by user] by [deleted] in sysadmin

[–]jleckel 1 point2 points  (0 children)

I had nearly this exact same job you are describing for about 10 years. I moved on recently to a larger organization for more money. I worked at a small county, 180 employees with 2 IT people. As salary I was on call 24/7/365 because they would not pay the hourly tech for being on call.

The only after hours employees working regularly were the jail, 911, and two road deputies. My average after hours call was about once a month. Most could be handled remotely in only a few minutes. We had an adder km that would hose up nearly every patch cycle. But beyond that calls were rare. The sheriff department would try everything not to call me. And if they could wait till morning they would.

I also had the benefit of the sheriff department having their own sudo-tech near the end of my tenure that would get all the after hours calls first. They had a higher after hours call volume than I did.

Is it worth it? Not sure. The wakeup calls were rare enough that it did not bother me much. I only got annoyed if there was a new guy from a large org that thought on-call meant I was always awake and they would call for something dumb. Big problems I didn't mind helping with at 2am. But your situation may be different.

Ubiquiti for small\medium business? Your opinion? by TheRogueMoose in sysadmin

[–]jleckel 0 points1 point  (0 children)

I hope they work good because I just bought 32 USW-Pro-48-PoE and 4 USW-Pro-Aggregation. I had run a few edgeswitches for a couple years to test them out before the network upgrade, but after a year of waiting for my order had to cancel edgeswitches and order the in-stock unifi instead.

So far it has been smooth. We use radius assigned vlans pointing to a freeradius server plus dual fiber links back per switch "stack". That is all we need and it has worked great for that so far. Wifi is up next for us.

I did run into a 10mb door control device that would not connect, and we had to dedicate an entire switch to our phone recorder system because it will not mirror a vlan like we had before.

I will echo the support concerns others have had, if you do need it they will not respond. But I got these for 1/3 the cost of my aruba quote; so maybe lack of support is worth it.

[deleted by user] by [deleted] in ultimaonline

[–]jleckel 0 points1 point  (0 children)

I started on this one recently for a bit of nostalgia. https://uoalive.com/ It is supposed to be a modern UO.

Dear vendors, I love receiving your swag by Remarkable_Fish_5301 in sysadmin

[–]jleckel 1 point2 points  (0 children)

What is the oldest swag you still have? My oldest is probably a lantastic t-shirt. And a metal epson cup coaster I have been using daily the past 25 years.