diff --git a/GOS_misc.md b/GOS_misc.md
new file mode 100644
index 0000000..84e0066
--- /dev/null
+++ b/GOS_misc.md
@@ -0,0 +1,36 @@
+## collectd
+
+### Forwarding collectd metrics to another collectd instance
+
+You need to add on destination collectd instance:
+
+```
+LoadPlugin network
+
+
+
+ SecurityLevel Encrypt
+ AuthFile "/etc/collectd/passwd"
+
+
+```
+In /etc/colllectd/passwd you need to add user and password for source collectd instance:
+
+```
+user:password
+user2:password2
+```
+
+Source collectd instance:
+
+```
+LoadPlugin network
+
+
+
+ SecurityLevel Encrypt
+ Username "user"
+ Password "password"
+
+
+```
diff --git a/Juniper.md b/Juniper.md
index 0902b32..86a622f 100644
--- a/Juniper.md
+++ b/Juniper.md
@@ -616,4 +616,5 @@ It is recommended to not have load average values more than 1.0 - 2.0.
```
admin@CORE> show ethernet-switching table | match MACADDRESS
```
-MACADDRESS should be replaced by MAC address of the user, for example 00:11:22:33:44:55
\ No newline at end of file
+MACADDRESS should be replaced by MAC address of the user, for example 00:11:22:33:44:55
+