Jump to content

Recommended Posts

Posted
Is your Smoothwall on Glamis too?

 

Yes, Glamis-3 although I am waiting for the chance (and time!) to transfer over to a S8 UTM appliance (so we can upgrade to Inverness etc.)

(I cannot do that at present on the existing appliance due to file-system used; so we have to rebuild either way!)

  • Thanks 1
Posted

Our Trust has amazingly not had anything infected, other members of the IT team were in over the weekend patching and rebooting servers, today has mainly been 'hunt down the XP installs and get the patch on them', I know my boss spent half the day upgrading a XP SP2 (!) to SP3 for a start. No email access be it internal Exchange, NHS.net, Gmail until later in the week though which will be another test I guess, also VPN access is offline still which isn't ideal being that it is my first week doing on call but never mind, I can have a nice steady walk into work should any issues arise ;)

 

I know York has been hit pretty hard, won't go into too many details but I cringed at some of the stuff I heard today. Feel sorry for the IT guys having to deal with it all, it is that bad they've even had to borrow a couple of our staff to start getting things up and running again.

  • Thanks 1
Posted

Disabling SMB1 stops you from browsing for computers/servers with shares using Windows Explorer. Also, GPP will no longer map drives using DFSR method, i.e.\\FQDN\Namespace\Sharename$

 

So how do you get around that?

Posted
Maybe a silly question, but I'm presuming that disabling SMB will break the ability to browse network shares from Apple Macs?

 

I could be wrong but I'm sure Macs use the newer SMB3 and most of the advice here has been to disable SMB1.

 

We had some lessons in our Mac Suite today and no one mentioned any issues with mapped shares.

Posted
Maybe a silly question, but I'm presuming that disabling SMB will break the ability to browse network shares from Apple Macs?

 

I could be wrong but I'm sure Macs use the newer SMB3 and most of the advice here has been to disable SMB1.

 

We had some lessons in our Mac Suite today and no one mentioned any issues with mapped shares.

 

Depends on your OS... there have been more discussions about this here... http://www.edugeek.net/forums/mac/184249-smb-10-7-5-a.html

Posted
Caleb Barlow from IBM Security posted on his Twitter feed that an analysis of the 1.06 billion spam emails caught in their traps since 1st March give no indication that WannaCry occurred via spam/phishing.
  • Thanks 1
Posted

Interesting, so looks like it was spread via SMB and open ports

 

My smoothwall looks fine with authentication - SMBv1 off on the DC's using NTLM terminal services compatibility mode for Authentication

Posted

I mentioned this before (but it is probably lost in the amount of message) but at my OHs trust they have been getting loads of people ring up 'from IT' asking for access to the computer

so the email/phishing stuff could be wrong

Posted

Maybe a stooopid question, but how do I find out if SMB1 is enabled on Windows 7 clients?

 

Also, is it best to disable on all servers?

 

PS. Back from the pub now :D

Posted
Disabling SMB1 stops you from browsing for computers/servers with shares using Windows Explorer. Also, GPP will no longer map drives using DFSR method, i.e.\\FQDN\Namespace\Sharename$

 

So how do you get around that?

 

There must be something else wrong or SMB was disabled completely. Explorer shouldn't be affected by disabling just SMBv1.

Posted (edited)
Maybe a stooopid question, but how do I find out if SMB1 is enabled on Windows 7 clients?

 

If you know specifically that the machine is Windows 7 (client edition, not server edition), then powershell should cover it:

              {
               # Windows Vista / Server 2008 / Windows 7 / Server 2008R2
               # SMB1 Client Settings
               if ((sc.exe qc lanmanworkstation) -match 'MRxSmb10') {
                 Start-Process -FilePath "$env:windir\System32\sc.exe" -ArgumentList 'config lanmanworkstation depend= bowser/mrxsmb20/nsi' -WindowStyle Hidden
                 Start-Process -FilePath "$env:windir\System32\sc.exe" -ArgumentList 'config mrxsmb10 start= disabled' -WindowStyle Hidden
               }
             }

Edited by Garacesh
Posted

I disabled SMB1 on my Win10 machine and access to network shares on 2008R2 and 2012R2 were lost.

 

I hadn't disabled the server side yet, do I have to do that as well to force everything to use at least SMB2?

Posted

So lets say I want do disable SMBv1 on windows 7 clients and deploy the fix using GPO, which of the following would I use in a startup script or do both work or should both be used together?????

 

sc.exe config lanmanworkstation depend= bowser/mrxsmb20/nsi

sc.exe config mrxsmb10 start= disabled

 

Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServ er\Parameters" SMB1 -Type DWORD -Value 0 -Force

 

Also do I need to enable v2 +v3 or should they already be enabled?

Posted
So lets say I want do disable SMBv1 on windows 7 clients and deploy the fix using GPO, which of the following would I use in a startup script or do both work or should both be used together?????

 

 

 

 

 

Also do I need to enable v2 +v3 or should they already be enabled?

 

I would also add:

 

Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" SMB2 -Type DWORD -Value 1 -Force

Posted
There must be something else wrong or SMB was disabled completely. Explorer shouldn't be affected by disabling just SMBv1.

 

Yeah, that sounds mighty odd. I can access DFS-R shares from a client with v1 disabled (though the server still has v1 enabled). Pushed out a script to disable v1 on all clients this morning, not had any complaints yet.

Posted
I've taken a look at the available subscriptions in our admin portal and it appears to be £1.06 a month for this.

What's the cost of this to Education, roughly, anyone know?

I was quoted a price of £0.82 per user per month when I last checked with our EES reseller. For 100 FTEs this comes to £984 per year.

 

OVS-ES Office 365 Exchange ATPOpenFaculty Shared Server All Language OLV Level E Per User Monthly Subscription *Price per Month* (Additional Product Licence) - Academic - Volume Licence (Electronic Delivery) 

P/N: W77-00001

Posted

I just put the following into a startup script and applied it to all my clients:

 

sc.exe config lanmanworkstation depend= bowser/mrxsmb20/nsi

sc.exe config mrxsmb10 start= disabled

 

Also deployed the March patch to all clients/servers.

  • Thanks 1
Posted
I would also add:

 

Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\LanmanSer ver\Parameters" SMB2 -Type DWORD -Value 1 -Force

 

So does that mean I only need the following for my Windows 7 clients??

Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\LanmanSer v er\Parameters" SMB1 -Type DWORD -Value 0 -Force

Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\LanmanSer ver\Parameters" SMB2 -Type DWORD -Value 1 -Force

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...