Gospel. Culture. Technology. Music.

Tag: server


SharePoint Conference 2012 – Some Highlights of What’s Coming

Here are some highlights from the conference. There’s a lot more detail, but this is the good stuff I’ve gathered.

  • SP2013 RTM was released.
  • Drag and drop documents into document folder; preview documents in pop-up window (including the ability to scroll through, it’s not just an image). Really cool.
  • Drag and drop does work cross-browser. Really great news.
  • One of the coolest functions for developers and designers in SP2013: automatic HTML to master page conversion.
  • SP2013 is backward compatible with 2010 … in almost every way, from back-end to front-end (this was contradicted later as I’ll show, however for the most part, I believe it’s accurate)
  • SP2013 central admin UI is different but structure/taxonomy is the same for the most part
  • Said in keynote: custom solutions work just the same in 2013 from 2010. (Yeah, we’ll see 🙂 )
  • New: Search-driven navigation. Intriguing and powerful.
  • Your own profile in MySites has a news feed that looks almost like Facebook and Twitter combined. You can follow certain sites or (what were once called) document libraries and it will all show up in one feed. You can then interact with others’ posts and conversations.
  • Client and server-side, they made significant reductions in I/O (on the back-end) and bandwidth (via the front-end); 40% reduction in bandwidth usage over-all; 50% reduction in SQL I/O by eliminating redundant queries and limiting the number of queries a single page makes; image compression is now 4X what it was.
  • eDiscovery: not just for SP, but also Exchange and other apps (like Project Server). You can freeze a file in its existing state, without affecting the file itself (meaning changes can still be made, but it doesn’t change the copy you’ve frozen), without user knowing it, in case of audit.
  • When versioning items, now only the delta is saved as opposed to the entire item each time. This significantly reduces SQL content DB growth.
  • Web analytics is now rolled into search. Very cool.
  • Down side: you cannot do an in-place upgrade. Only database attach. Not many people were happy about that apparently (maybe it was just me; that’s how I upgraded 2007 to 2010).
  • Down side: Office Web Apps now exists on its own, you no longer install it within SP as a service application. If upgrading, you would need to install Office Web Apps on its own server(s).
  • OWA bolts into Exchange now. Interesting.

Some pictures:

For whatever reason, I got an upgraded hotel room at Mandalay Bay; a suite, very nice:

Keynote time!

It’s amazing these are still allowed in hotels. Wonder how much longer that will last. Even Vegas still holds out hope and truth though for now.

Mandalay Bay Hotel, Luxor in the middle, and THEhotel to the left.

ClubLAX, aka ClubSPC (since M$ bought it out from 6-8pm one night); the decibel level was astounding. I’m getting old.

Bumblebee, of course.

One of the many meals where 10,000 people were served two full meals a day. Quite a serious logistical operation. Mandalay Bay pulled it off. Very impressive.

Waiting in line, for 40 minutes, with 10,000 people for Jon Bon Jovi and a lot of food; the SPC Beach Party. The lobster tacos were killer. I was too full after those to try anything else. I had to bolt early to make it to the next event …

This was the highlight for me: The @RBAConsulting Sky Party. 34th floor of the Palms Casino Resort, overlooking the strip. I overheard that this loft/suite was $40,000 a night? Good grief. Cigar rolling, drink, food, music, all overlooking Vegas. The pool went out over the edge, suspended. It was by far the coolest event I went to.

Cigar Rolling

Best shot I got …

DJ, mixin’ it up! He never did get around to the Snoop Dogg song I requested though 🙂

Oh yeah, and looooots of SharePoint sessions 🙂

OpenVPN Sharing a TCP Port with SSL on NGINX and Apache?

I’m absolutely baffled there isn’t more information out there about this. It seems like web managers and techs would be all over this, but there’s barely any information out there on this. I had a hard time finding documentation on OpenVPN’s site itself!

As one guy stated here (the post where I finally understood how this works) it’s not really “sharing” the port per se, but OpenVPN is deciphering between HTTP/S traffic and OpenVPN traffic and then forwarding web traffic over to another port, defined below. That’s crucial to understand.

Before I start, I want to note this doesn’t have to be done on an SSL port, as I understand it. I’m just using that as an example because it seems to be the most logical way to make it work if this is your configuration (you know, an SSL VPN going to an SSL port).

It should also be noted in this configuration example that OpenVPN, using the port-share parameter, is actually doing the listening on TCP port 443 and acting as a proxy itself that forwards non-OpenVPN traffic to the NGINX SSL port which we’ll layout below. You cannot do this utilizing UDP, that I know of.

So here’s what you do.

1) Set your NGINX or Apache listening ports. Set your NGINX standard http port 80 and SSL listening port to something OTHER than 443 … so, for arguments’ sake, let’s set it to 4443.

So it would look like this for Apache and NGINX:

For Apache, in the main httpd.conf (Windows) or in ports.conf (Ubuntu/Linux):

Listen 4443

For NGINX, in /etc/nginx/sites-available/defaults:

server {
        listen   4443;

        location / {
                root  /web/etc/blah;
        }
}

Once implemented, restart your respective service, Apache or NGINX.

2) Next, you’re going to set your OpenVPN server parameters. Set your listening port to 443 from its standard 1194 and add the port-share parameter to point to the Apache or NGINX port created above. The config should look as follows now:

port 443
port-share 127.0.0.1 4443
proto tcp

OpenVPN will now be ready to accept connections over 443 and route the appropriate https/SSL traffic to Apache or NGINX.

3) Change your firewall settings. Leave your TCP port 80 rule pointing directly to Apache or NGINX. Then point your SSL rule to TCP port 443 running on your OpenVPN server. OpenVPN will now catch the traffic directed at it and decipher between OpenVPN traffic and HTTPS traffic.

4) Change the configuration in your OpenVPN clients. Point your OpenVPN clients to TCP port 443 instead of the port you were using before:

remote domain.name.com 443

or

remote [IP ADDRESS] 443

Hope it works. Cheers!

AT&T Re-Blocking Outgoing Email Port 25 for Uverse Customers?

(FYI: When I first had Uverse setup, they allowed me to open SMTP port 25. This problem started when it was inadvertently blocked again recently. Long story short, there were other reports of this happening. Below is the process of trying to get it unblocked again.)

I have come to the realization tonight that my mail server has not been sending out emails since February 17th. I hopped on AT&T’s Uverse chat support and was informed (after connecting to a second tech for a possible different answer because, you know, not all techs know the same things) that AT&T is now blocking outbound SMTP port 25 for Uverse customers. I initially had the port opened on my account to allow outbound email for my mail server. But it doesn’t work now as of February 17. And if you want to have this port opened now, you must contact their Connectech team to unblock it. The number, as of now, is 1-866-294-3464, or you can apparently connect with their chat service here: https://chatnow.att.com/. If you send me an email directly right now, I’ll try to respond another way in the mean time.

—————————————————————

UPDATE 1: Okay this is rich. So I contacted Connectech via the chat app (which is an exe download, similar to TeamViewer), chatted with the tech about the problem and was asked if I had purchased a support plan. I said, no, I just need my port 25 opened again. He said, I can’t help you unless you have a package purchased (paraphrasing all of the aforementioned).

So let me get this straight: I already pay AT&T Uverse a larger amount of money for their technology (okay fine, whatever) than the other guys. I pay for support too when I have a problem, support that comes with my service. AT&T decides to block outbound port 25. To get it open, I can’t just call the regular support anymore. I have to call their outsourced “professional techs” to flip a switch. And in the process, at least pay them $20 more a month. You’ve gotta be kidding me? This is a new low for AT&T customer service. Ever heard of corporate communism? With their level of bureaucracy, red tape and hoops to jump through to get something done, for the one’s they’re supposed to be servicing, I can’t think of a better term. Or how about inefficiency?

—————————————————————

UPDATE 2: So after having blogged and tweeted this issue, I have received two responses from AT&T techs saying they can help. They asked me to direct message them on Twitter now with my account information. And although they are still tweeting others with issues, they will not respond. I don’t get it. Still waiting though …

—————————————————————

UPDATE 3: A social media guy (Mike A) from AT&T contacted me directly about the issue and is getting the ball rolling. Appreciate it!

—————————————————————

UPDATE 4: After receiving a call, I have yet to hear anything about a possible resolution or whether it is even still being looked at. I’ve called twice, left messages, with no response. Benefit of the doubt: could be very busy.

—————————————————————

UPDATE 5: Received a call from Mike A a little while ago at the social media team at AT&T and they let me know they have resolved the problem, port 25 is not being blocked anymore. There were apparently other reports of this happening and they are handling it on a case by case basis. Appreciate the help, Mike A, at @ATTTeamNatasha!

 

WordPress, User IP’s and Reverse Proxies

Apparently there is no code yet in WordPress to get a users’ IP address when running the web server behind a web proxy. So I hacked my own in. This seems to be a not-too-common problem, but it may help some people. I have a solution that works, but it requires some extra code and changes to the existing code. It differentiates between a web user hitting the web server directly (as in most hosting situations, or through a transparent proxy) or hitting the web server through a reverse proxy (as in my situation). I wrote this code a year ago for another site I own that runs behind an Apache reverse proxy I run at home.

PHP Code for Remote IP Address Detection on a Web Page

I wrote this code today to return the IP address of a remote host when either the host hits the web server directly or accesses it through a web proxy (as in my situation). Thought someone might find it useful.

function writeIPAddress() {
if (isset($_SERVER[‘HTTP_X_FORWARDED_FOR’]) == ”) {
return $_SERVER[‘REMOTE_ADDR’];
}

else {
return $_SERVER[‘HTTP_X_FORWARDED_FOR’];
}
}

Then, if you want to return the IP address as text on the page, simply do this:

echo writeIPAddress();

In addition, if you want to return the reverse DNS address of the IP, do this:

echo @gethostbyaddr(writeIPAddress());

Powered by WordPress & Theme by Anders Norén