Skip to content

Commit

Permalink
chore: Prefix blog posts with year for easier organization
Browse files Browse the repository at this point in the history
  • Loading branch information
christianfosli committed Apr 4, 2024
1 parent 1467898 commit 162618f
Show file tree
Hide file tree
Showing 16 changed files with 8 additions and 4 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ comment = true
tags=["linux"]
+++

Today I had an issue related to Azure Private Endpoints and DNS on my laptop when connected to a company office network.
Yesterday I had an issue related to Azure Private Endpoints and DNS on my laptop when connected to a company office network.
I think I found a nice work around, so I thought I'd write a blog post about it.
It's only applicable to Linux systems using systemd-resolved for DNS resolution (e.g. most Ubuntu and Fedora installations).

Expand All @@ -27,7 +27,11 @@ and the default DNS server on this network has been configured such that the blo
(*.blob.core.windows.net) gets resolved to the private endpoint's private IP address.
_However_ some kind of network security is blocking my connection to this private IP address.

I verify this using `dig +short {storageaccountname}.blob.core.windows.net`.
I verify this using dig:

```bash
dig +short {storageaccountname}.blob.core.windows.net
```

### Potential solutions and work-arounds

Expand All @@ -42,7 +46,7 @@ I'd like to specify a custom DNS server instead, but just for Azure Blob Storage

Queue systemd-resolved

#### Specific DNS servers for specific domain names with systemd-resolved
#### My solution: Configure specific DNS servers for specific domain names with systemd-resolved

Systemd-resolved is configured either by modifying the /etc/systemd/resolved.conf configuration file,
or by creating "drop-ins" in the /etc/systemd/resolved.conf.d directory.
Expand Down
2 changes: 1 addition & 1 deletion content/projects/on-colorscheme-changed.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ comment = true
+++

Rust-based service to change color theme in my terminal emulator and editor whenever the system color scheme changes.
See the [blog post](/posts/on-colorscheme-changed/) for more details.
See the [blog post](/posts/2024-on-colorscheme-changed/) for more details.

### Links

Expand Down

0 comments on commit 162618f

Please sign in to comment.