L2TP VPN 접속 관련(WIndows 에서 접속이 불가할 때)
OSX나 IOS상에서는 L2TP가 접속이 되나 WIndows 에서 접속이 불가능 한 경우
VPN서버가 NAT IP를 가지고 서비스 할 경우 접속이 불가한 경우가 발생 하며
하기 레지스트리 값을 추가한 후 재부팅 진행하면 정상적으로 접근이 가능합니다.
테스트는 윈도우VPN서버에서 테스트하였습니다.
For Windows XP:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\IPSec RegValue: AssumeUDPEncapsulationContextOnSendRule Type: DWORD Data Value: 2 For Windows Vista, 7, 8, 10, and 2008 Server:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PolicyAgent RegValue: AssumeUDPEncapsulationContextOnSendRule Type: DWORD Data Value: 2 |
출처 : https://github.com/StreisandEffect/streisand/issues/291
WinRM 서비스 재시작(Pending 걸려 풀리지 않을 경우)
$id = gwmi Win32_Service -Filter "Name LIKE 'WinRM'" | select -expand ProcessId
Stop-Process -Id $id -Force
gsv winrm | start-service
gsv winrm
Status Name DisplayName
------ ---- -----------
Running winrm Windows Remote Management (WS-Manag..
Set-mailbox에서 forwordingSMTPAddress 설정하였으나 외부로 메일 포워딩이 안되는 경우
Set-mailbox -Identity Redplug -DeliverToMailboxAndForward $True -Forwardingsmtpaddress redplug@gmail.com
(Forwardingsmtpaddress는 GUI상에서 노출되지 않음)
상기와 같이 내부메일을 외부메일을 포워딩 하는 파워쉘을 실행 시
내부는 전송이 되나 외부로 전송이 되지 않는 현상이 발생하여 확인해보니
외부 도메인에 대한 AutoForwardEnabled가 설정이 되지 않아 발생하는 증상이라고 합니다.
해당 도메인에 대한 AutoForwardEnabled를 활성화 하기 위해서는 하기와 같이 명령어를 사용하시면 됩니다.
New-RemoteDomain -Name remoteDomainGmailForward -DomainName "gmail.com"
(AutoForwardEnabled Default값은 Ture)
상기 외 다른 방법으로는 Exchange에서 연락처 등록을 한 후 Forwardingsmtpaddress가 아닌 forwardaddress로 등록하여 설정도 가능합니다.
@출처
http://techgenix.com/exchange-mailbox-forwardingsmtpaddress-setting-not-working/
Windows 2016에서 .Net Framework 4.6 삭제 했을 때
cmd창 열고
Dism /online /Enable-Feature /FeatureName:NetFx4 /All
무료 이미지 사이트
https://unsplash.com
호스트 파일 수정 단축아이콘
매번 노트패드 관리자로 열고 hosts파일 열어서 수정하기 번거로움을 조금이나마 덜기 위한 단축 아이콘 파일입니다.
해당 파일 압축 푹고 단축아이콘 관리자로 실행 시키면 됩니다.
자주 수정하는 사람이 아닌 경우 크게 필요하진 않습니다.
made by 회사분
SpamSniper 명령어
60초 마다 메일 큐 확인 파라매터 값 snipe-monitor v1.0.0 Wrong parameters entered, available ones are: -l : list message queues -L : list local message queue -R : list remote message queue -s : show some statistics -vN : display message number N -dN : delete message number N -D : delete all messages in the queue (local & remote) Additional (optional) parameters are: -c : display colored output -N : list message numbers only (to be used either with -l, -L or -R) |
watch -n 60 /sniper/snipe/bin/snipe-monitor -s |
RDP One-way Copy & Paste 관련
안녕하세요 Reds입니다.
현재 Windows RDS(Remote Desktop Service)를 통한 VDI 운영 중에 있으며 단방향복제에 대한 이슈가 있어서 찾아본 내용에 대해서 공유 드립니다.
하기사항은 정상적인 방법은 아니니 참고만 하시면 되겠습니다.
단방향 복제에 대한 Needs는 하기와 같았습니다.
사용자 PC > VM 허용
VM > 사용자 PC 허용X
타 벤더(Citrix, Vmware)의 경우 지원을 하는 부분으로 알고 있으나, WIndows RDS를 통해서는 불가한 것으로 알고 있습니다.(...제가 못찾은 걸지도..)
지원하는 것은 양방향 혹은 아예 불가 두가지만 가능한 상태여서 여러가지 테스트를 진행해본 결과 RdpClipRdrWindowClass를 종료할 경우 상기 기능이 가능한 것으로 확인되었습니다.
RDS상에서 Copy & paste를 진행하기 위해서는 RDPCLIP.EXE가 실행되어 있어야 하며 해당 파일을 실행할 경우 rdpclipRDRWindowClass와 RdpClipMainWindowClass 두가지 Class가 실행되게 됩니다.
Taskkill을 통하여 RDPCLIP.EXE를 여러번 Kill해본결과 원하는 기능이 간혹(?) 되길래 뒤져보니 RdpClipRdrWindowClass만 종료될 경우에 단방향 복제가 가능한 것으로 확인하였습니다.
상기에도 말씀드렸지만 정상적인 방법은 아닙니다.
(사실 망연계 솔루션등을 도입을 해야 맞지 않을까 싶습니다만...돈이.....)
간단하게 프로그램은 만들어 두었으니(....라지만 사실상 짜집기입니다 제가 코딩을 잘 몰라서^^;)
참고 부탁드립니다.
해당 프로그램은 3초마다 한번씩 rdpcliprdrwindowclass가 살아있는지 체크하고 살아있을경우 Class를 kill하는 프로그램 입니다.
Indexing Service fails to start with error Event ID 41335
Problem
The Enterprise Vault Indexing service fails to start and logs error Event ID 41335 in the Symantec Enterprise Vault event log.
Error Message
[Symantec Enterprise Vault event log]
Event ID: 41335
Description: An error occurred while trying to start indexing engine.
[Dtrace]
A Dtrace of the EVIndexAdminService will show the following line:
EVIndexAdminService) <7092> EV-H {VELOCITYSTARTSTOPINDEXINGENGINE.EN_US} Some of the processes did not start, shutdown indexing engine.
Cause
One or more files of the Indexing Engine are corrupt.
Solution
This can be rectified by re-installing the indexing engine using the Indexing Redistributable supplied with the Enterprise Vault Install Media.
1. Stop the Enterprise Vault Indexing
Service on the affected Enterprise Vault Server.
2. Stop the World Wide Web Publishing
Service on the affected Enterprise Vault Server.
3. Launch IIS Manager and delete the EVIndexing virtual
Directory.
4. Following the deletion of the Indexing virtual directory, delete the
EVIndexingPool application pool.
NOTE: Do not delete any other virtual directories or application pools
as doing so will damage the Enterprise Vault installation.
5. Using windows explorer, navigate to the Enterprise Vault
installation Directory and delete the EVIndexing subdirectory
NOTE: If Enterprise Vault is clustered the IndexMetaData folder (which
is usually found under the EVIndexing subdirectory) may be held in a different
location and will need to be deleted separately in addition to deletinig the
EVIndexing folder in Step 5. To locate this folder run the below SQL query:
USE EnterpriseVaultDirectory
SELECT CE.ComputerName, ISE.MetaDataLocation
FROM ComputerEntry CE, IndexingServiceEntry ISE
WHERE CE.ComputerEntryID = ISE.ComputerEntryID
6. Reinstall the Indexing Engine, using the “Symantec
Enterprise Vault Indexing Redistributable.msi”. The
redistributable file is located on the Enterprise Vault Installation Media, in
the following location: "Server/EVTmp"
NOTE:
If any indexing hotfix has been applied to the affected Indexing
Server, this must be uninstalled before re-installing the Indexing
Redistributable. This is done by completing the following steps:
a. Locate the installation msi used to install the hotfix
b. Right-click on the msi and select uninstall
c. The hotfix will be removed and the Indexing Redistributable can now be run
d. Following the re-installation of the Indexing Server, please ensure to
reapply any hotfixes that were previously removed.
7. Restart the Enterprise Vault Indexing Service
NOTE:
It may take a while for the Indexing service to become fully operational
following the reinstallation of the Indexing Engine, as a full Synchronization
between Enterprise Vault and the Indexing Engine will be automatically
triggered. The commencement and completion of this process will be marked by
the following entries in the Enterprise Vault Event Log:
Event ID: 41372
Indexing Service has started the synchronization of index volume metadata
between the indexing engine repository and the Directory database.
Event ID: 41377
Indexing Service has completed the synchronization of index volume metadata
between the indexing engine repository and the Directory database.
Total index volume(s) whose metadata was created: x
Total index volume(s) whose location was updated: y
출처: <https://www.veritas.com/support/en_US/article.TECH212179>