Latest Server related questions

Score: 0
5y5tem5 avatar
PKI trust in Active Directory
gb flag

Assuming that the certificate of the ADCS CAs joined to a given domain are signed by an offline root CA which is then trusted by all systems in the domain/forest. If that offline root was then used to issue/sign a CA certificate (no constraints) and that CA then issued user/computer/smart card certificates for resources of the domain in question would they be trusted (i.e. would a certificate issued in ...

Score: 1
sirkus7 avatar
GCP Firewall and IPv6 address support?
cn flag

Although the GCP documentation claims that IPv6 addresses are supported when making firewall rules (https://cloud.google.com/vpc/docs/firewalls) I can't seem to make it happen. From this doc:

  • Firewall rules support IPv4 connections. IPv6 connections are also supported in VPC networks that have IPv6 enabled. When specifying a source for an ingress rule or a destination for an egress rule by address ...
Score: 0
uday avatar
Azure key vault volume not accessible, how to fix that?
ke flag

I have followed the walkthrough provided in this link

And at step 6, I have tried to create a pod with the volume linked to the keyvault.

But it is not able to access the volume.

kubectl get pods
NAME                                         READY   STATUS              RESTARTS   AGE
busybox-secrets-store-inline                 0/1     ContainerCreating   0          27s
csi-csi-secrets-store-provi ...
Score: 0
Julien avatar
Nginx redirect path to different path
cn flag

I'm trying to redirect urls with Ninx but i'm struggling to get it right:

example.com/{dynamic1}/foo/bar/{dynamic2} to example.com/{dynamic1}/bar/{dynamic2}

basically i'm trying to remove the /foo/ portion of the url.

i've tried the following:

location ~* ^/(.*)/foo/bar/(.*)$ {
  return 302 ^/$1/bar/$2?$args;
} 

and also:

location ~ ^/([^/]*)/foo/bar/(.*)$ {
  return 302 ^/$1/bar/$2?$args;
}

but thi ...

Score: 0
Loading Additional STIGs in SCAP Compliance Checker
us flag

I have been evaluating the SCAP Compliance Checker tool (https://www.niwcatlantic.navy.mil/scap/). It comes with a reasonable set of pre-loaded STIGs, but I'd like to add additional ones. Although there is an "install" option for adding STIGs, I have so far been unsuccessful in finding any in a format that SCC will accept. I've tried using STIGs from the National Checklist Program (https://ncp.nist.g ...

Score: 0
Which application path to use for Windows IIS in Advanced Firewall Rules?
cn flag
AxD

I'd like to unblock my IIS ASP.NET 4.5 webservice for public access.

In Windows 10 Advanced Firewall Rules I added an inbound rule to accept all incoming requests for my webservice's port (e.g. 8001). That's working fine with "allow all programs".

However, I'd like to further restrict this rule to only work for IIS.

But none of the restrictions I set so far worked:

  • Setting program path C:\Windows\Sys ...
Score: 3
Maximus Minimus avatar
Mystery Package when adding a new SCCM Distribution Point
id flag

My SCCM hierarchy has three Distribution Points and I am adding a fourth.

The new Distribution Point is added successfully, and when I check Content Status I see that all of my content items are now properly targeting all four Distribution Points, with the exception of one package:

  • Microsoft Corporation Configuration Manager Client Piloting Upgrade Package

This package still only targets the origina ...

Score: 1
IIS Rewrite module, simple rule
uy flag

I am stuck on a very simple IIS rewrite rule. I have a series of links that have an invalid path, and I need to redirect all requests to that path to a new one.

Here is the broken path: https://documentation.buzsoftware.com/buzdocs/BuzClubManager/index.cfm?ID=690

The "buzdocs" portion of the path no longer exists and all links below this path have been moved up one folder to this example path (which wor ...

Score: 0
How can I configure Windows Server 2019 to send Email system notifications
pk flag

I've never done this on any Windows Server version previously. So, I found this https://docs.microsoft.com/en-us/windows-server/storage/fsrm/configure-email-notifications . Seems easy enough, but, alas, is not supported on Windows Server 2019 (I guess because I am not configuring a File Server). I've got a remote SMTP server (everything on AWS) and just want the quick and dirty configuration. Thi ...

Score: 0
H-v-A avatar
Deleted emails automatically re-appear in original folders of an Office365 email account
ru flag

I have an O365 email with problem that I cannot delete email in any folder like Inbox, Sent Item, Deleted, etc... After I delete one or more emails, those deleted emails automatically re-appear at the original place. Problem happens to delete action only, and I still able to move emails from one folder to another.

Some settings I got via Exchange Admin

  • It's not a shared mailbox
  • Litigation hold is Off
Score: 0
Chris Ostmo avatar
Large tmp file transfer hangs in nginx php-fpm proxy
cn flag

We have a server that's running a WordPress site with a serverpilot-installed nginx stack on Ubuntu 20 LTS.

Very large uploads appear to get stuck in the handoff between the nginx proxy and PHP, and I have come to the end of what I know how to troubleshoot without just poking at it to see what happens (which is rarely a good use of time or way to move forward). So far as I can tell, I have increa ...

Score: 0
How to redirect DNS request to a remote systemd-resolved?
ve flag

I was trying to make system-resolved as a remote DNS caching server (I know it is not intended to do so). I added the changed the net.ipv4.conf.br0.route_localnet to 1 and added the following nftable rules:

table ip nat {
    chain prerouting {
        type nat hook prerouting priority 100; policy accept;
        iif "br0" udp dport 53 counter packets 6 bytes 366 dnat to 127.0.0.53
    }

    chain ...
Score: 0
stevenmiller avatar
DNS suffix not being used with windows server hostnames over VPN
it flag

Our internal network is a windows domain, contoso.net. Internally, if a user needs to get to a file server share, they can navigate to \\fileserver\share or \\fileserver.contoso.net\share and both resolve without issue.

We recently stood up an external VPN (Azure P2S) using IKEv2 that is configured to use our internal DNS servers, DNS suffix contoso.net and is configured for split tunneling.

PPP ada ...
Score: 0
live2 avatar
Ubuntu install with pxe boot (UEFI)
in flag

Do I need to create a special configuration to install an ubuntu server with uefi over network pxe boot? I have on my boot server the default pxelinux.0 file. After installation of a new hardware i have checked the filesystem /sys/firmware/efi/vars/ and the uefi folder has files. With this my system should run under uefi.

Since I have found some instructions in the internet on how to set up a uefi  ...

Score: 0
J B avatar
df shows negative bytes used.... only during dd
bd flag
J B

I have begun a dd to copy a partition on one usb drive, to a 2nd usb drive. While I have freshly reformatted the destination partition (/dev/sdc1), and it checks out with fsck normally and shows it is empty with no issues in df, like this:

Filesystem      1K-blocks       Used  Available Use% Mounted on
/dev/sdc1      1536927656      77852 1458708416   1% /media/test/WD4

as soon as I start the dd, it s ...

The Stunning Power of Questions

Much of an executive’s workday is spent asking others for information—requesting status updates from a team leader, for example, or questioning a counterpart in a tense negotiation. Yet unlike professionals such as litigators, journalists, and doctors, who are taught how to ask questions as an essential part of their training, few executives think of questioning as a skill that can be honed—or consider how their own answers to questions could make conversations more productive.

That’s a missed opportunity. Questioning is a uniquely powerful tool for unlocking value in organizations: It spurs learning and the exchange of ideas, it fuels innovation and performance improvement, it builds rapport and trust among team members. And it can mitigate business risk by uncovering unforeseen pitfalls and hazards.

For some people, questioning comes easily. Their natural inquisitiveness, emotional intelligence, and ability to read people put the ideal question on the tip of their tongue. But most of us don’t ask enough questions, nor do we pose our inquiries in an optimal way.

The good news is that by asking questions, we naturally improve our emotional intelligence, which in turn makes us better questioners—a virtuous cycle. In this article, we draw on insights from behavioral science research to explore how the way we frame questions and choose to answer our counterparts can influence the outcome of conversations. We offer guidance for choosing the best type, tone, sequence, and framing of questions and for deciding what and how much information to share to reap the most benefit from our interactions, not just for ourselves but for our organizations.